From 60373e1305c83db534f78add49fa0982426a4aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Thu, 13 Jun 2024 17:27:51 -0300 Subject: [PATCH 1/7] Update setup.py with new dependencies PWPA-1930 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6b2e659..d47d21b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,14 @@ with open("CHANGELOG.rst", encoding="UTF-8") as changelog_file: history = changelog_file.read() -requirements = ["attrs>=18.1.0", "numpy>=1.11.0", "oop-ext>=1.1", "typing_extensions"] +requirements = [ + "alfasim-sdk==0.20.0", + "attrs>=18.1.0", + "numpy>=1.11.0", + "pandas>=2.2.2", + "oop-ext>=1.1", + "typing_extensions", +] extras_require = { "testing": [ "codecov", @@ -16,6 +23,7 @@ "pytest", "pytest-cov", "pytest-mock", + "pytest-regressions", "tox", ], } From 480a2ad4522b0112bfb9f2dcc8b0b1c98822e045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Thu, 13 Jun 2024 17:29:02 -0300 Subject: [PATCH 2/7] Add constants and units modules PWPA-1930 --- src/alfasim_score/constants.py | 3 +++ src/alfasim_score/converter/__init__.py | 0 src/alfasim_score/units.py | 1 + 3 files changed, 4 insertions(+) create mode 100644 src/alfasim_score/constants.py create mode 100644 src/alfasim_score/converter/__init__.py create mode 100644 src/alfasim_score/units.py diff --git a/src/alfasim_score/constants.py b/src/alfasim_score/constants.py new file mode 100644 index 0000000..2ecd249 --- /dev/null +++ b/src/alfasim_score/constants.py @@ -0,0 +1,3 @@ +WELLBORE_TOP_NODE = "WELBORE_TOP_NODE" +WELLBORE_BOTTOM_NODE = "WELBORE_BOTTOM_NODE" +ANNULUS_TOP_NODE_NAME = "WELLBORE_ANNULUS_TOP_NODE" diff --git a/src/alfasim_score/converter/__init__.py b/src/alfasim_score/converter/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/alfasim_score/units.py b/src/alfasim_score/units.py new file mode 100644 index 0000000..c4cd4e3 --- /dev/null +++ b/src/alfasim_score/units.py @@ -0,0 +1 @@ +LENGTH_UNIT = "m" From c3e15defd1b602f8f4e89a459e9a4185f8d9effd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Thu, 13 Jun 2024 17:30:00 -0300 Subject: [PATCH 3/7] Create reader for SCORE input file; Create convertion class for the alfacase and test; PWPA-1930 --- .../_tests/test_convert_well_trajectory.py | 28 +++++++++++ .../test_convert_well_trajectory.csv | 18 +++++++ .../converter/alfacase/convert_alfacase.py | 50 +++++++++++++++++++ .../converter/alfacase/score_input_reader.py | 19 +++++++ 4 files changed, 115 insertions(+) create mode 100644 src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py create mode 100644 src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory/test_convert_well_trajectory.csv create mode 100644 src/alfasim_score/converter/alfacase/convert_alfacase.py create mode 100644 src/alfasim_score/converter/alfacase/score_input_reader.py diff --git a/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py new file mode 100644 index 0000000..745f1b2 --- /dev/null +++ b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py @@ -0,0 +1,28 @@ +from typing import Any + +import json +import pytest +from pathlib import Path +from pytest_regressions.num_regression import NumericRegressionFixture + +from alfasim_score.converter.alfacase.convert_alfacase import AlfacaseConverter +from alfasim_score.converter.alfacase.score_input_reader import ScoreInputReader + + +@pytest.fixture +def score_input_example(shared_datadir: Path) -> ScoreInputReader: + return ScoreInputReader(shared_datadir / "score_input_example.json") + + +def test_convert_well_trajectory( + num_regression: NumericRegressionFixture, + score_input_example: ScoreInputReader, +) -> None: + builder = AlfacaseConverter(score_input_example) + well_description = builder.build_well() + num_regression.check( + { + "x": well_description.profile.x_and_y.x.GetValues("m"), + "y": well_description.profile.x_and_y.y.GetValues("m"), + } + ) diff --git a/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory/test_convert_well_trajectory.csv b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory/test_convert_well_trajectory.csv new file mode 100644 index 0000000..0cc13d4 --- /dev/null +++ b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory/test_convert_well_trajectory.csv @@ -0,0 +1,18 @@ +,x,y +0,0,-2072 +1,0.73287082896792399,-2099.9872078220192 +2,76.096647818807043,-3538.0137378686054 +3,77.752992985225475,-3567.9679367851122 +4,80.017903235804596,-3597.8807902103954 +5,83.32537729373297,-3627.6963773057687 +6,87.671385511348291,-3657.3783723710953 +7,93.050632947088673,-3686.8906124675491 +8,99.456565816563227,-3716.1971414765844 +9,106.88137947732878,-3745.2622539069289 +10,115.31602793764459,-3774.0505383962231 +11,124.75023487761972,-3802.5269208543127 +12,135.172506169326,-3830.6567071956224 +13,146.57014388062231,-3858.4056256085569 +14,158.92926174562896,-3885.7398683104229 +15,171.9795438608509,-3912.1277131463253 +16,1111.9130083432817,-5733.2154388877443 diff --git a/src/alfasim_score/converter/alfacase/convert_alfacase.py b/src/alfasim_score/converter/alfacase/convert_alfacase.py new file mode 100644 index 0000000..82cac09 --- /dev/null +++ b/src/alfasim_score/converter/alfacase/convert_alfacase.py @@ -0,0 +1,50 @@ +# mypy: disallow-untyped-defs +from alfasim_sdk import AnnulusDescription +from alfasim_sdk import FormationDescription +from alfasim_sdk import ProfileDescription +from alfasim_sdk import WellDescription +from alfasim_sdk import XAndYDescription +from barril.units import Scalar + +from alfasim_score.constants import ANNULUS_TOP_NODE_NAME +from alfasim_score.constants import WELLBORE_BOTTOM_NODE +from alfasim_score.constants import WELLBORE_TOP_NODE +from alfasim_score.converter.alfacase.score_input_reader import ScoreInputReader +from alfasim_score.units import LENGTH_UNIT + + +class AlfacaseConverter: + def __init__(self, score_reader: ScoreInputReader): + self.score_input = score_reader + self.well_name = score_reader.score_filepath.stem + + def _get_well_start_vertical_position(self) -> Scalar: + _, y = self.score_input.read_well_trajectory() + return Scalar(y[0], LENGTH_UNIT) + + def _convert_well_trajectory(self) -> ProfileDescription: + """ + Convert the trajectory for the imported well. + NOTE: all positions don't start to count as zero at ANM, but they use the same values + from the input SCORE file. + """ + x, y = self.score_input.read_well_trajectory() + return ProfileDescription(x_and_y=XAndYDescription(x=x, y=y)) + + # TODO PWPA-1937: implement this method + def _convert_annulus(self) -> AnnulusDescription: + return AnnulusDescription(has_annulus_flow=False, top_node=ANNULUS_TOP_NODE_NAME) + + # TODO PWPA-1934: implement this method + def _convert_formation(self) -> AnnulusDescription: + return FormationDescription(reference_y_coordinate=self._get_well_start_vertical_position()) + + def build_well(self) -> WellDescription: + return WellDescription( + name=self.well_name, + profile=self._convert_well_trajectory(), + annulus=self._convert_annulus(), + formation=self._convert_formation(), + top_node=WELLBORE_TOP_NODE, + bottom_node=WELLBORE_BOTTOM_NODE, + ) diff --git a/src/alfasim_score/converter/alfacase/score_input_reader.py b/src/alfasim_score/converter/alfacase/score_input_reader.py new file mode 100644 index 0000000..5a12a02 --- /dev/null +++ b/src/alfasim_score/converter/alfacase/score_input_reader.py @@ -0,0 +1,19 @@ +# mypy: disallow-untyped-defs +import json +from barril.units import Array +from pathlib import Path + +from alfasim_score.units import LENGTH_UNIT + + +class ScoreInputReader: + def __init__(self, score_filepath: Path): + self.score_filepath = score_filepath + with open(score_filepath) as f: + self.input_content = json.load(f) + + def read_well_trajectory(self) -> tuple[Array, Array]: + """Create the arrays with the x and y positions.""" + x = [entry["displacement"] for entry in self.input_content["trajectory"]["data"]] + y = [-entry["vertical_depth"] for entry in self.input_content["trajectory"]["data"]] + return Array(x, LENGTH_UNIT), Array(y, LENGTH_UNIT) From 2dca6269d9bbe8e5a87a1ddf4aa0db79d1688d1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Thu, 13 Jun 2024 17:31:16 -0300 Subject: [PATCH 4/7] Add example input file for SCORE PWPA-1930 --- .../converter/alfacase/_tests/data/score_input_example.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/alfasim_score/converter/alfacase/_tests/data/score_input_example.json diff --git a/src/alfasim_score/converter/alfacase/_tests/data/score_input_example.json b/src/alfasim_score/converter/alfacase/_tests/data/score_input_example.json new file mode 100644 index 0000000..f2db5d9 --- /dev/null +++ b/src/alfasim_score/converter/alfacase/_tests/data/score_input_example.json @@ -0,0 +1 @@ +{"initial_conditions": [{"axial_load": null, "temperature": null, "reference": "Undisturbed", "sequence": null, "internal_pressure_load": null, "external_pressure_load": null, "_id": "d6xQzEj1D5"}], "name": "Teste T\u00e9rmico", "is_load_scenarios_outdated": false, "tubing_strings": [{"top_md": 2072, "completion_fluid": {"_id": "BrxBAwD9LW", "minimum_fluid_weight": 0, "fluid": "", "fluid_weight": 9}, "name": "Coluna #1", "annular_fluids": [{"solid_ratio": null, "is_custom": false, "weight": 9, "extension": 3493.1800000000003, "top": 2072, "corrected_solid_ratio": null, "fluid": "DFLT_FCBA_9.00", "salinity": null, "is_salinity_custom": null, "oil_water_ratio": null, "solid_density": null, "fluid_type": "FCBA", "base": 5565.18, "is_oil_water_ratio_custom": null, "is_solid_ratio_custom": null, "is_weight_custom": false}], "components": [{"config": {"max_od": 8.35, "compatible_casing_ods": [], "drift": 3.825, "envelope": {"type": "Envelope 1", "envelope": [{"pressure": -10500, "axial": 400000}, {"pressure": 5000, "axial": 400000}, {"pressure": 12000, "axial": 100000}, {"pressure": 12000, "axial": -400000}, {"pressure": -8000, "axial": -400000}, {"pressure": -12000, "axial": -250000}, {"pressure": -12000, "axial": 325000}]}, "custom_setting_pressure": false, "min_id": 3.825, "compatible_casing_max_weights": [], "compatible_casing_min_weights": [], "custom_setting_force": false, "setting_pressure": 1590, "compatible_casing_grades": []}, "depth": 5565.18, "_id": "qo7D1ww4Nn", "component": {"name": "", "reference": "Packer Hall 5 1/2\"x 4 1/2\"", "maximum_od": 0, "minimum_id": 0, "sub_type": "HYDRAULIC", "attributes": {}, "type": "PACKER", "id": 0}, "name": "Packer (Hidr\u00e1ulico) #1"}], "base_md": 5897.12, "od": 6.625, "string_pressure_test": 5000, "string_sections": [{"top_md": 2072.0000000000005, "extension": 40.21, "sequence": 1, "base_md": 2112.2100000000005, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2112.2100000000005, "extension": 732.9, "sequence": 2, "base_md": 2845.1100000000006, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 146, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 146}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 128}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2845.1100000000006, "extension": 56.4, "sequence": 3, "base_md": 2901.5100000000007, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2901.5100000000007, "extension": 48.9, "sequence": 4, "base_md": 2950.4100000000008, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2950.4100000000008, "extension": 54.9, "sequence": 5, "base_md": 3005.310000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 3005.310000000001, "extension": 2400.9, "sequence": 6, "base_md": 5406.210000000001, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5406.210000000001, "extension": 158.97, "sequence": 7, "base_md": 5565.180000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5565.180000000001, "extension": 31.04, "sequence": 8, "base_md": 5596.220000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"name": "VAM TOP", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 107}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5596.220000000001, "extension": 24.9, "sequence": 9, "base_md": 5621.120000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5621.120000000001, "extension": 21.67, "sequence": 10, "base_md": 5642.790000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5642.790000000001, "extension": 20.24, "sequence": 11, "base_md": 5663.030000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5663.030000000001, "extension": 27.42, "sequence": 12, "base_md": 5690.450000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5690.450000000001, "extension": 132.9, "sequence": 13, "base_md": 5823.35, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5823.35, "extension": 21.67, "sequence": 14, "base_md": 5845.02, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5845.02, "extension": 20.24, "sequence": 15, "base_md": 5865.26, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5865.26, "extension": 31.860000000000127, "sequence": 16, "base_md": 5897.12, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}], "load_scenarios": [{"comment": "Gerado automaticamente", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o #1", "backup": {"attributes": {}, "type": "TUBING_HYDROSTATIC", "geopressures": {"fracture_pressure_id": "", "_id": "qP9dEwRed1", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "id": 1, "attributes": {"plug_depth": 5565.18, "mud_weight": 9, "test_pressure": 5000}, "_id": "2qgkxWNgK9", "type": "TUBING_PRESSURE_TEST", "is_complete": true, "stage": "PRODUCTION", "geopressures": {"fracture_pressure_id": "", "_id": "xx6LloVjej", "pore_pressure_id": "", "overburden_pressure_id": ""}}, {"comment": "Gerado automaticamente", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o do Anular #1", "backup": {"attributes": {"packer_depth": 5565.18, "annulus_pressure": 6000, "fluid": 9}, "type": "PRESSURIZED_ANNULUS", "geopressures": {"fracture_pressure_id": "", "_id": "2BWxwbKpzY", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "id": 2, "attributes": {"fluid": 9, "internal_pressure": 0.0}, "_id": "R9XVGnKRl3", "type": "ANNULUS_PRESSURE_TEST", "is_complete": true, "stage": "PRODUCTION", "geopressures": {"fracture_pressure_id": "", "_id": "4MVLN4Oqr2", "pore_pressure_id": "", "overburden_pressure_id": ""}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PO", "backup": {"pressure_profile": [{"pressure": 12512.97404159617, "depth": 2072.0, "density": 8.859906818746389}, {"pressure": 12543.24070972043, "depth": 2092.0550000000003, "density": 8.85952294025045}, {"pressure": 12573.50737784469, "depth": 2112.11, "density": 8.860439312300624}, {"pressure": 12573.658211107302, "depth": 2112.21, "density": 8.862828328313816}, {"pressure": 12573.809044369917, "depth": 2112.31, "density": 8.862271752527683}, {"pressure": 12615.738401410206, "depth": 2140.105, "density": 8.863537712166163}, {"pressure": 12657.667758450494, "depth": 2167.9, "density": 8.864684299469264}, {"pressure": 12657.818824008666, "depth": 2168.0, "density": 8.875842694211258}, {"pressure": 12657.969889566837, "depth": 2168.1, "density": 8.877768373937675}, {"pressure": 12785.835265241049, "depth": 2252.71375, "density": 8.878738407014218}, {"pressure": 12913.70064091526, "depth": 2337.3275, "density": 8.879068277717442}, {"pressure": 13041.582289377362, "depth": 2421.94125, "density": 8.879953352945817}, {"pressure": 13169.463937839464, "depth": 2506.5550000000003, "density": 8.880190877235918}, {"pressure": 13297.363660358313, "depth": 2591.1687500000003, "density": 8.8805712298538}, {"pressure": 13425.263382877158, "depth": 2675.7825000000003, "density": 8.881607054266912}, {"pressure": 13553.184713670962, "depth": 2760.3962500000002, "density": 8.882174307188892}, {"pressure": 13681.106044464765, "depth": 2845.01, "density": 8.883323969525053}, {"pressure": 13681.25725542865, "depth": 2845.11, "density": 8.879991491787337}, {"pressure": 13681.408466392537, "depth": 2845.21, "density": 8.879993873081801}, {"pressure": 13723.903626634657, "depth": 2873.3100000000004, "density": 8.880740859335335}, {"pressure": 13766.398786876778, "depth": 2901.4100000000003, "density": 8.881687695898322}, {"pressure": 13766.550010998813, "depth": 2901.51, "density": 8.885862517875177}, {"pressure": 13766.701235120847, "depth": 2901.61, "density": 8.885870322303456}, {"pressure": 13803.524517824533, "depth": 2925.96, "density": 8.887770310031241}, {"pressure": 13840.34780052822, "depth": 2950.31, "density": 8.88966951129137}, {"pressure": 13840.499047791074, "depth": 2950.41, "density": 8.885507513917245}, {"pressure": 13840.650295053929, "depth": 2950.5099999999998, "density": 8.885515318223522}, {"pressure": 13882.021226627256, "depth": 2977.8599999999997, "density": 8.887649396692627}, {"pressure": 13923.392158200584, "depth": 3005.21, "density": 8.889538209046455}, {"pressure": 13923.54342386359, "depth": 3005.31, "density": 8.89395684217363}, {"pressure": 13923.694689526596, "depth": 3005.41, "density": 8.893964633683726}, {"pressure": 13973.984299763191, "depth": 3038.6549999999997, "density": 8.896554213253783}, {"pressure": 14024.273909999787, "depth": 3071.9, "density": 8.897314172953244}, {"pressure": 14024.42519542252, "depth": 3072.0, "density": 8.888629651166893}, {"pressure": 14024.576480845253, "depth": 3072.1, "density": 8.888604896750955}, {"pressure": 14129.932998190352, "depth": 3141.7333333333336, "density": 8.889788598950393}, {"pressure": 14235.28951553545, "depth": 3211.366666666667, "density": 8.890359669160333}, {"pressure": 14340.6677876259, "depth": 3281.0, "density": 8.89101917198612}, {"pressure": 14446.046059716346, "depth": 3350.633333333333, "density": 8.892307385961658}, {"pressure": 14551.448289776983, "depth": 3420.2666666666664, "density": 8.893673342110304}, {"pressure": 14656.850519837622, "depth": 3489.9, "density": 8.894402410256667}, {"pressure": 14657.001974298671, "depth": 3490.0, "density": 8.89855846547861}, {"pressure": 14657.15342875972, "depth": 3490.1, "density": 8.899259775697562}, {"pressure": 14790.721134496478, "depth": 3578.5249999999996, "density": 8.899519589008403}, {"pressure": 14924.288840233237, "depth": 3666.95, "density": 8.900807519127845}, {"pressure": 15053.219125104872, "depth": 3755.375, "density": 8.902201849664914}, {"pressure": 15182.149409976506, "depth": 3843.7999999999997, "density": 8.902569725133828}, {"pressure": 15302.309389403372, "depth": 3932.2249999999995, "density": 8.903997342265717}, {"pressure": 15422.469368830238, "depth": 4020.6499999999996, "density": 8.90442955209611}, {"pressure": 15541.732445481744, "depth": 4109.075, "density": 8.90495996577888}, {"pressure": 15660.99552213325, "depth": 4197.5, "density": 8.906515301924676}, {"pressure": 15780.287848557631, "depth": 4285.924999999999, "density": 8.908204271801862}, {"pressure": 15899.580174982011, "depth": 4374.349999999999, "density": 8.908835361830445}, {"pressure": 16018.904655566157, "depth": 4462.775, "density": 8.909556386262288}, {"pressure": 16138.229136150303, "depth": 4551.2, "density": 8.911376123471388}, {"pressure": 16257.589281645893, "depth": 4639.625, "density": 8.912211102664571}, {"pressure": 16376.949427141482, "depth": 4728.049999999999, "density": 8.914212123790778}, {"pressure": 16496.348618376178, "depth": 4816.474999999999, "density": 8.916345881911631}, {"pressure": 16615.747809610875, "depth": 4904.9, "density": 8.91725119954531}, {"pressure": 16615.882818627626, "depth": 4905.0, "density": 8.913961880416911}, {"pressure": 16616.01782764438, "depth": 4905.1, "density": 8.913538430508968}, {"pressure": 16728.77029126115, "depth": 4988.601666666667, "density": 8.91602554492536}, {"pressure": 16841.522754877922, "depth": 5072.1033333333335, "density": 8.91806835950655}, {"pressure": 16954.321969012562, "depth": 5155.605, "density": 8.919771966716707}, {"pressure": 17067.121183147206, "depth": 5239.106666666667, "density": 8.922317467844227}, {"pressure": 17179.977592277603, "depth": 5322.608333333334, "density": 8.924742185412658}, {"pressure": 17292.834001407995, "depth": 5406.11, "density": 8.927252446057954}, {"pressure": 17292.969192119148, "depth": 5406.21, "density": 8.92620834494523}, {"pressure": 17293.104382830297, "depth": 5406.31, "density": 8.926211462013013}, {"pressure": 17316.487727170344, "depth": 5423.605, "density": 8.926765451386437}, {"pressure": 17339.87107151039, "depth": 5440.9, "density": 8.927350866814672}, {"pressure": 17340.006286677282, "depth": 5441.0, "density": 8.926925832752348}, {"pressure": 17340.141501844177, "depth": 5441.1, "density": 8.92692921830442}, {"pressure": 17423.98728958749, "depth": 5503.09, "density": 8.930215115712253}, {"pressure": 17507.833077330804, "depth": 5565.08, "density": 8.933519126392957}, {"pressure": 17507.954808592247, "depth": 5565.17, "density": 8.933519126392957}, {"pressure": 9429.453932604843, "depth": 5565.1900000000005, "density": 5.752738238337729}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 5.752738238337729}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 5.754302718765482}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 5.754310108772698}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 5.760378860164837}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.766756252795241}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4N2k8v72P2", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 3970.164922205433, "depth": 2072.0, "density": 5.24484631130687}, {"pressure": 4056.4597815648335, "depth": 2112.11, "density": 5.287856789122516}, {"pressure": 4056.7440769158266, "depth": 2112.31, "density": 5.287995591179031}, {"pressure": 4127.598574715061, "depth": 2167.9, "density": 5.32250995864109}, {"pressure": 4127.852745326099, "depth": 2168.1, "density": 5.322630427263732}, {"pressure": 4376.219233527066, "depth": 2337.3275, "density": 5.368858274479566}, {"pressure": 4631.605187630597, "depth": 2506.5550000000003, "density": 5.40427304538075}, {"pressure": 4887.409062043315, "depth": 2675.7825000000003, "density": 5.435783101284677}, {"pressure": 5143.602208071672, "depth": 2845.01, "density": 5.464849546173478}, {"pressure": 5144.100429822999, "depth": 2845.21, "density": 5.46491354992483}, {"pressure": 5295.013200723747, "depth": 2901.4100000000003, "density": 5.484605404685228}, {"pressure": 5295.355462765142, "depth": 2901.61, "density": 5.484646701384024}, {"pressure": 5369.236283143481, "depth": 2950.31, "density": 5.4925243550069744}, {"pressure": 5369.734091304978, "depth": 2950.5099999999998, "density": 5.492575663131621}, {"pressure": 5516.479245835702, "depth": 3005.21, "density": 5.50797041502018}, {"pressure": 5516.8217848111135, "depth": 3005.41, "density": 5.508003134016332}, {"pressure": 5617.835176783186, "depth": 3071.9, "density": 5.517362709073765}, {"pressure": 5618.139104074497, "depth": 3072.1, "density": 5.517391095292115}, {"pressure": 5829.894496538654, "depth": 3211.366666666667, "density": 5.537433380436882}, {"pressure": 6041.894224224394, "depth": 3350.633333333333, "density": 5.555717361090349}, {"pressure": 6254.120422895878, "depth": 3489.9, "density": 5.572381533819413}, {"pressure": 6254.425361979752, "depth": 3490.1, "density": 5.572404804778714}, {"pressure": 6523.761514803976, "depth": 3666.95, "density": 5.593198596699949}, {"pressure": 6787.552026078631, "depth": 3843.7999999999997, "density": 5.6100833638354795}, {"pressure": 7040.529969162247, "depth": 4020.6499999999996, "density": 5.626897088159938}, {"pressure": 7292.592864095492, "depth": 4197.5, "density": 5.64198852445929}, {"pressure": 7544.89693238247, "depth": 4374.349999999999, "density": 5.656702846615072}, {"pressure": 7797.443143022119, "depth": 4551.2, "density": 5.671025780593375}, {"pressure": 8050.229952459254, "depth": 4728.049999999999, "density": 5.684168067508341}, {"pressure": 8303.262369965205, "depth": 4904.9, "density": 5.697750329596764}, {"pressure": 8303.548664821605, "depth": 4905.1, "density": 5.697764047683984}, {"pressure": 8542.723580353768, "depth": 5072.1033333333335, "density": 5.709427381169273}, {"pressure": 8782.125662402424, "depth": 5239.106666666667, "density": 5.721343591643692}, {"pressure": 9021.75378458319, "depth": 5406.11, "density": 5.732568973596364}, {"pressure": 9022.228906083708, "depth": 5406.31, "density": 5.732592075813893}, {"pressure": 9110.90665008143, "depth": 5440.9, "density": 5.7369552982632595}, {"pressure": 9111.41939812835, "depth": 5441.1, "density": 5.7369805656386035}, {"pressure": 9429.296013747906, "depth": 5565.08, "density": 5.75272773960641}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 5.752738238337729}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 5.754302718765482}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 5.754310108772698}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 5.760378860164837}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.766756252795241}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 11000, "apb_data": {"pressure_variation": 9334.97404159617, "initial_volume": 87.9675888778126, "volume_variation": 0.40552018967729, "leakage_bbl": 0.0, "final_volume": 88.37310906748989, "leakage_mass": 0.0}, "operation_id": "7qWOQo3oG4"}, "_id": "7qWOQo3oG4-4", "type": "THERMAL", "id": 3, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PA", "backup": {"pressure_profile": [{"pressure": 11864.61673111335, "depth": 2072.0, "density": 8.882971206950703}, {"pressure": 11894.958996345724, "depth": 2092.0550000000003, "density": 8.881747484896552}, {"pressure": 11925.301261578097, "depth": 2112.11, "density": 8.881741430963901}, {"pressure": 11925.452456341742, "depth": 2112.21, "density": 8.883987575835851}, {"pressure": 11925.603651105384, "depth": 2112.31, "density": 8.883489336851055}, {"pressure": 11967.62991148862, "depth": 2140.105, "density": 8.88397887456528}, {"pressure": 12009.656171871855, "depth": 2167.9, "density": 8.88436661650713}, {"pressure": 12009.807569589975, "depth": 2168.0, "density": 8.895238565779298}, {"pressure": 12009.958967308094, "depth": 2168.1, "density": 8.897343809712629}, {"pressure": 12138.08557441296, "depth": 2252.71375, "density": 8.897073414206186}, {"pressure": 12266.212181517827, "depth": 2337.3275, "density": 8.896201117542537}, {"pressure": 12394.32566303503, "depth": 2421.94125, "density": 8.896135832339262}, {"pressure": 12522.439144552234, "depth": 2506.5550000000003, "density": 8.895449037238457}, {"pressure": 12650.543498418694, "depth": 2591.1687500000003, "density": 8.894866926729012}, {"pressure": 12778.647852285152, "depth": 2675.7825000000003, "density": 8.894917421327326}, {"pressure": 12906.746577077154, "depth": 2760.3962500000002, "density": 8.894486580305605}, {"pressure": 13034.845301869153, "depth": 2845.01, "density": 8.894701103424017}, {"pressure": 13034.996704379295, "depth": 2845.11, "density": 8.891570298036527}, {"pressure": 13035.14810688944, "depth": 2845.21, "density": 8.891570842627349}, {"pressure": 13077.694167119009, "depth": 2873.3100000000004, "density": 8.891794056272483}, {"pressure": 13120.240227348579, "depth": 2901.4100000000003, "density": 8.892197467322557}, {"pressure": 13120.391630473632, "depth": 2901.51, "density": 8.896131752209909}, {"pressure": 13120.54303359869, "depth": 2901.61, "density": 8.89613796026949}, {"pressure": 13157.40921923429, "depth": 2925.96, "density": 8.897649353453945}, {"pressure": 13194.275404869893, "depth": 2950.31, "density": 8.899160229517904}, {"pressure": 13194.426817290248, "depth": 2950.41, "density": 8.895234960160328}, {"pressure": 13194.578229710605, "depth": 2950.5099999999998, "density": 8.895241169647601}, {"pressure": 13235.991477691243, "depth": 2977.8599999999997, "density": 8.896939176853618}, {"pressure": 13277.40472567188, "depth": 3005.21, "density": 8.898414024272109}, {"pressure": 13277.556139544422, "depth": 3005.31, "density": 8.902571188405204}, {"pressure": 13277.707553416965, "depth": 3005.41, "density": 8.902577387630505}, {"pressure": 13328.044680993042, "depth": 3038.6549999999997, "density": 8.904637828185008}, {"pressure": 13378.381808569116, "depth": 3071.9, "density": 8.90494581728173}, {"pressure": 13378.53323056082, "depth": 3072.0, "density": 8.89671292215603}, {"pressure": 13378.684652552523, "depth": 3072.1, "density": 8.896684031023842}, {"pressure": 13484.128007741614, "depth": 3141.7333333333336, "density": 8.89716512105631}, {"pressure": 13589.571362930705, "depth": 3211.366666666667, "density": 8.89706464154353}, {"pressure": 13695.02030232424, "depth": 3281.0, "density": 8.897044858452821}, {"pressure": 13800.46924171777, "depth": 3350.633333333333, "density": 8.897623896172552}, {"pressure": 13905.926132163559, "depth": 3420.2666666666664, "density": 8.898330499275671}, {"pressure": 14011.383022609345, "depth": 3489.9, "density": 8.898427442610375}, {"pressure": 14011.5345437497, "depth": 3490.0, "density": 8.902451299165463}, {"pressure": 14011.686064890055, "depth": 3490.1, "density": 8.903216818309117}, {"pressure": 14145.29851139474, "depth": 3578.5249999999996, "density": 8.902589112426961}, {"pressure": 14278.910957899427, "depth": 3666.95, "density": 8.902937887709276}, {"pressure": 14407.858702962745, "depth": 3755.375, "density": 8.903412255615253}, {"pressure": 14536.806448026064, "depth": 3843.7999999999997, "density": 8.902928499704128}, {"pressure": 14656.959121232649, "depth": 3932.2249999999995, "density": 8.903474086563959}, {"pressure": 14777.111794439232, "depth": 4020.6499999999996, "density": 8.903096114134485}, {"pressure": 14896.34590193197, "depth": 4109.075, "density": 8.902868375293458}, {"pressure": 15015.58000942471, "depth": 4197.5, "density": 8.903595973005977}, {"pressure": 15134.822891659145, "depth": 4285.924999999999, "density": 8.904508318608697}, {"pressure": 15254.06577389358, "depth": 4374.349999999999, "density": 8.904432243707559}, {"pressure": 15373.321582627388, "depth": 4462.775, "density": 8.904479603910138}, {"pressure": 15492.577391361194, "depth": 4551.2, "density": 8.905562590123537}, {"pressure": 15611.850234962365, "depth": 4639.625, "density": 8.905756144309033}, {"pressure": 15731.123078563534, "depth": 4728.049999999999, "density": 8.907053241139273}, {"pressure": 15850.418070811053, "depth": 4816.474999999999, "density": 8.9085510444981}, {"pressure": 15969.713063058574, "depth": 4904.9, "density": 8.908885246424722}, {"pressure": 15969.847945838601, "depth": 4905.0, "density": 8.90569789594474}, {"pressure": 15969.98282861863, "depth": 4905.1, "density": 8.905232008766914}, {"pressure": 16082.624015081148, "depth": 4988.601666666667, "density": 8.907228804274636}, {"pressure": 16195.265201543665, "depth": 5072.1033333333335, "density": 8.908787830360843}, {"pressure": 16307.941875964365, "depth": 5155.605, "density": 8.910059998520705}, {"pressure": 16420.61855038507, "depth": 5239.106666666667, "density": 8.91214896331082}, {"pressure": 16533.341491792977, "depth": 5322.608333333334, "density": 8.914012245048877}, {"pressure": 16646.06443320088, "depth": 5406.11, "density": 8.916031479475517}, {"pressure": 16646.199457405917, "depth": 5406.21, "density": 8.915130075059682}, {"pressure": 16646.33448161095, "depth": 5406.31, "density": 8.915132672855963}, {"pressure": 16669.688376430164, "depth": 5423.605, "density": 8.915554377155795}, {"pressure": 16693.04227124938, "depth": 5440.9, "density": 8.915917644805294}, {"pressure": 16693.177312389453, "depth": 5441.0, "density": 8.915520681610602}, {"pressure": 16693.31235352953, "depth": 5441.1, "density": 8.915522782881704}, {"pressure": 16777.042147026335, "depth": 5503.09, "density": 8.9179107174159}, {"pressure": 16860.771940523144, "depth": 5565.08, "density": 8.920316488371675}, {"pressure": 16860.89350337868, "depth": 5565.17, "density": 8.920316488371675}, {"pressure": 9441.371045838301, "depth": 5565.1900000000005, "density": 6.89027265347066}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.960216471289632}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "EjDnE2kq5z", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5081.543330705224, "depth": 2072.0, "density": 10.674942125040534}, {"pressure": 5154.463479386348, "depth": 2112.11, "density": 10.674942125040534}, {"pressure": 5154.729782626977, "depth": 2112.31, "density": 7.812538170321899}, {"pressure": 5223.371375987518, "depth": 2167.9, "density": 7.254884981871999}, {"pressure": 5223.618428155485, "depth": 2168.1, "density": 7.247769451638367}, {"pressure": 5432.8431713150985, "depth": 2337.3275, "density": 7.264151353677423}, {"pressure": 5642.383376861897, "depth": 2506.5550000000003, "density": 7.275060960172339}, {"pressure": 5852.244000586632, "depth": 2675.7825000000003, "density": 7.286228726545228}, {"pressure": 6062.426190315201, "depth": 2845.01, "density": 7.29735011487494}, {"pressure": 6062.770913859334, "depth": 2845.21, "density": 10.113154614228703}, {"pressure": 6165.055577853925, "depth": 2901.4100000000003, "density": 10.693388406212478}, {"pressure": 6165.323568723582, "depth": 2901.61, "density": 7.901555922747114}, {"pressure": 6225.913257982565, "depth": 2950.31, "density": 7.309782102195059}, {"pressure": 6226.258142670403, "depth": 2950.5099999999998, "density": 10.168725715684262}, {"pressure": 6325.8482369680605, "depth": 3005.21, "density": 10.697206760312623}, {"pressure": 6326.1165038296385, "depth": 3005.41, "density": 7.870144918121326}, {"pressure": 6408.947719567878, "depth": 3071.9, "density": 7.319445702835113}, {"pressure": 6409.196943072566, "depth": 3072.1, "density": 7.311469957007408}, {"pressure": 6582.8408976066985, "depth": 3211.366666666667, "density": 7.325768204676366}, {"pressure": 6756.665700626388, "depth": 3350.633333333333, "density": 7.333450650639767}, {"pressure": 6930.671065959044, "depth": 3489.9, "density": 7.3410155638128085}, {"pressure": 6930.921088302758, "depth": 3490.1, "density": 7.3349054975349315}, {"pressure": 7151.655055452435, "depth": 3666.95, "density": 7.3566704659157915}, {"pressure": 7366.704750999159, "depth": 3843.7999999999997, "density": 7.423866274723627}, {"pressure": 7570.772543478621, "depth": 4020.6499999999996, "density": 7.531197066352129}, {"pressure": 7773.868248316369, "depth": 4197.5, "density": 7.582746249268261}, {"pressure": 7977.154974659774, "depth": 4374.349999999999, "density": 7.589878195296857}, {"pressure": 8180.635432496095, "depth": 4551.2, "density": 7.597111320942968}, {"pressure": 8384.318889006508, "depth": 4728.049999999999, "density": 7.604690444469053}, {"pressure": 8588.20001404185, "depth": 4904.9, "density": 7.612070562464109}, {"pressure": 8588.430697082133, "depth": 4905.1, "density": 7.646947291297027}, {"pressure": 8781.155253199015, "depth": 5072.1033333333335, "density": 7.619789898789728}, {"pressure": 8974.081542118764, "depth": 5239.106666666667, "density": 7.627765849568972}, {"pressure": 9167.199040553918, "depth": 5406.11, "density": 7.635325738995607}, {"pressure": 9167.524825329016, "depth": 5406.31, "density": 10.738817918021573}, {"pressure": 9227.13962069832, "depth": 5440.9, "density": 11.379895576987375}, {"pressure": 9227.48434422416, "depth": 5441.1, "density": 11.36309446915446}, {"pressure": 9441.243857658057, "depth": 5565.08, "density": 11.384235135580552}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.960216471289632}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 8686.61673111335, "initial_volume": 87.9675888778126, "volume_variation": 0.36469766093472344, "leakage_bbl": 0.0, "final_volume": 88.33228653874733, "leakage_mass": 0.0}, "operation_id": "NPMo3LQLxK"}, "_id": "NPMo3LQLxK-4", "type": "THERMAL", "id": 4, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PO", "backup": {"pressure_profile": [{"pressure": 5000.0, "depth": 2072.0, "density": 1.63760284770828}, {"pressure": 5001.843438768823, "depth": 2078.685, "density": 1.6198760137977095}, {"pressure": 5003.686877537648, "depth": 2085.37, "density": 1.6026219221269116}, {"pressure": 5005.4945974242, "depth": 2092.0550000000003, "density": 1.5894507034205718}, {"pressure": 5007.302317310752, "depth": 2098.7400000000002, "density": 1.5764408667724208}, {"pressure": 5009.082991036673, "depth": 2105.425, "density": 1.5665786264573573}, {"pressure": 5010.8636647625935, "depth": 2112.11, "density": 1.5568143830518495}, {"pressure": 5010.890124985783, "depth": 2112.21, "density": 1.5566585810685034}, {"pressure": 5010.916585208972, "depth": 2112.31, "density": 1.556463799029782}, {"pressure": 5013.344872202376, "depth": 2121.575, "density": 1.5431278524705643}, {"pressure": 5015.773159195781, "depth": 2130.84, "density": 1.5299915028352522}, {"pressure": 5018.168855776536, "depth": 2140.105, "density": 1.5220761336035014}, {"pressure": 5020.564552357291, "depth": 2149.37, "density": 1.5142351891345407}, {"pressure": 5022.9406518892165, "depth": 2158.635, "density": 1.509470726676222}, {"pressure": 5025.316751421142, "depth": 2167.9, "density": 1.5047696092774372}, {"pressure": 5025.342324529711, "depth": 2168.0, "density": 1.5047704761635488}, {"pressure": 5025.367897638282, "depth": 2168.1, "density": 1.5047713430347358}, {"pressure": 5027.914865078792, "depth": 2178.054558823529, "density": 1.5054629020644663}, {"pressure": 5030.461832519301, "depth": 2188.0091176470587, "density": 1.5061545024464478}, {"pressure": 5033.010711881156, "depth": 2197.9636764705883, "density": 1.5066151842586775}, {"pressure": 5035.559591243008, "depth": 2207.9182352941175, "density": 1.5070758350227735}, {"pressure": 5038.109792927611, "depth": 2217.8727941176467, "density": 1.5074087419356634}, {"pressure": 5040.659994612214, "depth": 2227.8273529411763, "density": 1.507741577705796}, {"pressure": 5043.211192938014, "depth": 2237.781911764706, "density": 1.508003989042254}, {"pressure": 5045.762391263815, "depth": 2247.736470588235, "density": 1.5082663071099076}, {"pressure": 5048.314407167791, "depth": 2257.6910294117642, "density": 1.5084900555417124}, {"pressure": 5050.866423071769, "depth": 2267.645588235294, "density": 1.5087136985704293}, {"pressure": 5053.419158982646, "depth": 2277.6001470588235, "density": 1.5089164787705638}, {"pressure": 5055.9718948935215, "depth": 2287.554705882353, "density": 1.5091191469887695}, {"pressure": 5058.52529850151, "depth": 2297.5092647058827, "density": 1.5093107825991463}, {"pressure": 5061.0787021094975, "depth": 2307.463823529412, "density": 1.509502302733107}, {"pressure": 5063.632746241238, "depth": 2317.418382352941, "density": 1.5096882541649506}, {"pressure": 5066.18679037298, "depth": 2327.3729411764707, "density": 1.5098740883400754}, {"pressure": 5068.74146182775, "depth": 2337.3275000000003, "density": 1.5100573919076454}, {"pressure": 5071.29613328252, "depth": 2347.2820588235295, "density": 1.5102405773910748}, {"pressure": 5073.8514266272905, "depth": 2357.2366176470587, "density": 1.51042292057705}, {"pressure": 5076.406719972062, "depth": 2367.1911764705883, "density": 1.5106051453807312}, {"pressure": 5078.962634087859, "depth": 2377.145735294118, "density": 1.5107874669336863}, {"pressure": 5081.518548203656, "depth": 2387.100294117647, "density": 1.5109696701003172}, {"pressure": 5084.075084381222, "depth": 2397.0548529411763, "density": 1.511152492748988}, {"pressure": 5086.631620558787, "depth": 2407.009411764706, "density": 1.5113351971707882}, {"pressure": 5089.188781362533, "depth": 2416.9639705882355, "density": 1.5115187800752494}, {"pressure": 5091.745942166278, "depth": 2426.9185294117647, "density": 1.5117022449930524}, {"pressure": 5094.303730878044, "depth": 2436.873088235294, "density": 1.51188677405555}, {"pressure": 5096.861519589811, "depth": 2446.8276470588235, "density": 1.5120711854293125}, {"pressure": 5099.41994000317, "depth": 2456.782205882353, "density": 1.5122567714650572}, {"pressure": 5101.9783604165295, "depth": 2466.7367647058823, "density": 1.5124422401441127}, {"pressure": 5104.53741659274, "depth": 2476.6913235294114, "density": 1.5126289403913622}, {"pressure": 5107.096472768951, "depth": 2486.645882352941, "density": 1.5128155236312815}, {"pressure": 5109.656168918095, "depth": 2496.6004411764707, "density": 1.513003372022366}, {"pressure": 5112.215865067239, "depth": 2506.5550000000003, "density": 1.5131911037654766}, {"pressure": 5114.776205506381, "depth": 2516.5095588235295, "density": 1.513380370620492}, {"pressure": 5117.336545945522, "depth": 2526.4641176470586, "density": 1.513569521270833}, {"pressure": 5119.897539736911, "depth": 2536.4186764705883, "density": 1.5137624984491638}, {"pressure": 5122.458533528302, "depth": 2546.373235294118, "density": 1.5139553605819402}, {"pressure": 5125.020193514798, "depth": 2556.3277941176475, "density": 1.514151561324434}, {"pressure": 5127.581853501294, "depth": 2566.2823529411767, "density": 1.5143476480262832}, {"pressure": 5130.144189284979, "depth": 2576.236911764706, "density": 1.5145461784151344}, {"pressure": 5132.706525068665, "depth": 2586.1914705882355, "density": 1.5147445954871235}, {"pressure": 5135.269543972577, "depth": 2596.146029411765, "density": 1.514944961649926}, {"pressure": 5137.83256287649, "depth": 2606.1005882352943, "density": 1.5151452150640532}, {"pressure": 5140.39627096338, "depth": 2616.0551470588234, "density": 1.5153471438609283}, {"pressure": 5142.959979050271, "depth": 2626.009705882353, "density": 1.5155489603909833}, {"pressure": 5145.524381687697, "depth": 2635.9642647058827, "density": 1.5157523021736168}, {"pressure": 5148.088784325124, "depth": 2645.918823529412, "density": 1.515955532123698}, {"pressure": 5150.653886501163, "depth": 2655.873382352941, "density": 1.5161602059369559}, {"pressure": 5153.218988677202, "depth": 2665.8279411764706, "density": 1.5163647683258963}, {"pressure": 5155.784795175887, "depth": 2675.7825000000003, "density": 1.5165708027233806}, {"pressure": 5158.3506016745705, "depth": 2685.7370588235294, "density": 1.5167767261130338}, {"pressure": 5160.917120036294, "depth": 2695.6916176470586, "density": 1.5169860512285287}, {"pressure": 5163.483638398019, "depth": 2705.646176470588, "density": 1.5171952663553443}, {"pressure": 5166.050881817626, "depth": 2715.600735294118, "density": 1.5174081900549072}, {"pressure": 5168.618125237233, "depth": 2725.5552941176475, "density": 1.5176210048793901}, {"pressure": 5171.18610428769, "depth": 2735.5098529411766, "density": 1.5178364861099407}, {"pressure": 5173.754083338149, "depth": 2745.464411764706, "density": 1.5180518592518741}, {"pressure": 5176.322805936319, "depth": 2755.4189705882354, "density": 1.5182693213214105}, {"pressure": 5178.891528534491, "depth": 2765.373529411765, "density": 1.5184866759073046}, {"pressure": 5181.461001133179, "depth": 2775.3280882352947, "density": 1.5187115006175063}, {"pressure": 5184.030473731867, "depth": 2785.282647058824, "density": 1.5189405636462334}, {"pressure": 5186.60070194763, "depth": 2795.237205882353, "density": 1.5191711571178876}, {"pressure": 5189.170930163395, "depth": 2805.1917647058826, "density": 1.5194016395130547}, {"pressure": 5191.741919144077, "depth": 2815.1463235294123, "density": 1.5196335663080176}, {"pressure": 5194.312908124758, "depth": 2825.1008823529414, "density": 1.5198653824603012}, {"pressure": 5196.884662820176, "depth": 2835.0554411764706, "density": 1.5200986046424312}, {"pressure": 5199.456417515595, "depth": 2845.01, "density": 1.5203317166022112}, {"pressure": 5199.482270846643, "depth": 2845.11, "density": 1.5203534301134813}, {"pressure": 5199.50812417769, "depth": 2845.21, "density": 1.5203621832923566}, {"pressure": 5201.932439177142, "depth": 2854.576666666667, "density": 1.5217758940314383}, {"pressure": 5204.356754176593, "depth": 2863.9433333333336, "density": 1.5231898847665475}, {"pressure": 5206.784984546264, "depth": 2873.3100000000004, "density": 1.5242227277227953}, {"pressure": 5209.213214915936, "depth": 2882.6766666666667, "density": 1.5252646064798905}, {"pressure": 5211.644349033106, "depth": 2892.0433333333335, "density": 1.5260575374186596}, {"pressure": 5214.0754831502745, "depth": 2901.4100000000003, "density": 1.5268505457089185}, {"pressure": 5214.101436896916, "depth": 2901.51, "density": 1.5268227689383607}, {"pressure": 5214.127390643556, "depth": 2901.61, "density": 1.5268344035782528}, {"pressure": 5216.232696003266, "depth": 2909.7266666666665, "density": 1.5261652211295418}, {"pressure": 5218.338001362975, "depth": 2917.8433333333332, "density": 1.5255191177220873}, {"pressure": 5220.441941000252, "depth": 2925.96, "density": 1.525194102746649}, {"pressure": 5222.54588063753, "depth": 2934.076666666667, "density": 1.5248688725818653}, {"pressure": 5224.649177319465, "depth": 2942.1933333333336, "density": 1.5247428838738895}, {"pressure": 5226.752474001399, "depth": 2950.31, "density": 1.5246167347717094}, {"pressure": 5226.778399844475, "depth": 2950.41, "density": 1.5246457966715115}, {"pressure": 5226.804325687553, "depth": 2950.5099999999998, "density": 1.524641338485187}, {"pressure": 5228.94462885436, "depth": 2958.758333333333, "density": 1.525710933472498}, {"pressure": 5231.084932021168, "depth": 2967.0066666666667, "density": 1.5267806965847766}, {"pressure": 5233.2279079520185, "depth": 2975.255, "density": 1.5276047403209652}, {"pressure": 5235.37088388287, "depth": 2983.503333333333, "density": 1.5284288835734072}, {"pressure": 5237.515947247228, "depth": 2991.7516666666666, "density": 1.5290866958994676}, {"pressure": 5239.661010611584, "depth": 3000.0, "density": 8.721200326404945}, {"pressure": 5242.994274900973, "depth": 3002.605, "density": 8.721127486316536}, {"pressure": 5246.327539190363, "depth": 3005.21, "density": 8.721054654119916}, {"pressure": 5246.475866726519, "depth": 3005.31, "density": 8.72274752199452}, {"pressure": 5246.624194262675, "depth": 3005.41, "density": 8.722757315047065}, {"pressure": 5258.951851382301, "depth": 3013.7212499999996, "density": 8.723571180181894}, {"pressure": 5271.279508501929, "depth": 3022.0325, "density": 8.724384936138152}, {"pressure": 5283.607320784573, "depth": 3030.34375, "density": 8.725198586301099}, {"pressure": 5295.935133067216, "depth": 3038.6549999999997, "density": 8.726007514385858}, {"pressure": 5308.263104071475, "depth": 3046.96625, "density": 8.726028642204136}, {"pressure": 5320.591075075734, "depth": 3055.2775, "density": 8.726050540790824}, {"pressure": 5332.919208483563, "depth": 3063.58875, "density": 8.725976523229201}, {"pressure": 5345.247341891393, "depth": 3071.9, "density": 8.72578069268245}, {"pressure": 5345.3956875780095, "depth": 3072.0, "density": 8.717082422296206}, {"pressure": 5345.544033264624, "depth": 3072.1, "density": 8.717080069556426}, {"pressure": 5360.301292384191, "depth": 3082.0476190476193, "density": 8.716846104260698}, {"pressure": 5375.058551503756, "depth": 3091.995238095238, "density": 8.716612272972464}, {"pressure": 5389.816044556525, "depth": 3101.942857142857, "density": 8.716378580794135}, {"pressure": 5404.573537609294, "depth": 3111.890476190476, "density": 8.716145022625426}, {"pressure": 5419.331269471617, "depth": 3121.838095238095, "density": 8.716260961806826}, {"pressure": 5434.089001333939, "depth": 3131.785714285714, "density": 8.716289060739655}, {"pressure": 5448.846976902719, "depth": 3141.7333333333336, "density": 8.716318407049807}, {"pressure": 5463.604952471498, "depth": 3151.6809523809525, "density": 8.716435997148754}, {"pressure": 5478.36317679096, "depth": 3161.6285714285714, "density": 8.716555120696567}, {"pressure": 5493.121401110422, "depth": 3171.5761904761903, "density": 8.716585832017293}, {"pressure": 5507.879879090832, "depth": 3181.523809523809, "density": 8.716706552943513}, {"pressure": 5522.638357071242, "depth": 3191.4714285714285, "density": 8.71673859438927}, {"pressure": 5537.397093609536, "depth": 3201.419047619048, "density": 8.716860915323325}, {"pressure": 5552.155830147827, "depth": 3211.366666666667, "density": 8.716894287165653}, {"pressure": 5566.914830145714, "depth": 3221.3142857142857, "density": 8.717018210731755}, {"pressure": 5581.673830143601, "depth": 3231.2619047619046, "density": 8.717052913183332}, {"pressure": 5596.433098507482, "depth": 3241.2095238095235, "density": 8.717088888019381}, {"pressure": 5611.192366871363, "depth": 3251.157142857143, "density": 8.717214475226111}, {"pressure": 5625.951909711901, "depth": 3261.104761904762, "density": 8.717343852630139}, {"pressure": 5640.711452552438, "depth": 3271.052380952381, "density": 8.717383304725129}, {"pressure": 5655.471289860757, "depth": 3281.0, "density": 8.717428239071118}, {"pressure": 5670.231127169077, "depth": 3290.947619047619, "density": 8.717563660803558}, {"pressure": 5684.991268137924, "depth": 3300.895238095238, "density": 8.717609894460235}, {"pressure": 5699.7514091067715, "depth": 3310.842857142857, "density": 8.71774691888168}, {"pressure": 5714.511858787096, "depth": 3320.7904761904765, "density": 8.71779445114444}, {"pressure": 5729.272308467418, "depth": 3330.7380952380954, "density": 8.717933081062785}, {"pressure": 5744.033071700101, "depth": 3340.6857142857143, "density": 8.717981965200632}, {"pressure": 5758.793834932783, "depth": 3350.633333333333, "density": 8.718122205977979}, {"pressure": 5773.554916575304, "depth": 3360.580952380952, "density": 8.718264002833141}, {"pressure": 5788.315998217824, "depth": 3370.5285714285715, "density": 8.718314259289105}, {"pressure": 5803.077403183785, "depth": 3380.476190476191, "density": 8.718457669922438}, {"pressure": 5817.838808149746, "depth": 3390.4238095238097, "density": 8.718509243100723}, {"pressure": 5832.600542338111, "depth": 3400.3714285714286, "density": 8.718563755878025}, {"pressure": 5847.362276526477, "depth": 3410.3190476190475, "density": 8.718710651068104}, {"pressure": 5862.124356204956, "depth": 3420.2666666666664, "density": 8.718861866442818}, {"pressure": 5876.886435883435, "depth": 3430.214285714286, "density": 8.718920294346892}, {"pressure": 5891.648868460986, "depth": 3440.161904761905, "density": 8.718979962450291}, {"pressure": 5906.4113010385345, "depth": 3450.109523809524, "density": 8.719132838741817}, {"pressure": 5921.174091291811, "depth": 3460.057142857143, "density": 8.719287266335144}, {"pressure": 5935.936881545089, "depth": 3470.004761904762, "density": 8.719347787440373}, {"pressure": 5950.700031623153, "depth": 3479.9523809523807, "density": 8.719502408236156}, {"pressure": 5965.46318170122, "depth": 3489.9, "density": 8.719563224063444}, {"pressure": 5965.611664962304, "depth": 3490.0, "density": 8.72384917696526}, {"pressure": 5965.760148223389, "depth": 3490.1, "density": 8.724640271703427}, {"pressure": 5980.555585164963, "depth": 3500.06338028169, "density": 8.7246060964745}, {"pressure": 5995.351022106537, "depth": 3510.0267605633803, "density": 8.724688183826375}, {"pressure": 6010.146541235034, "depth": 3519.9901408450705, "density": 8.724772376972796}, {"pressure": 6024.942060363532, "depth": 3529.9535211267603, "density": 8.724739988938364}, {"pressure": 6039.737418695743, "depth": 3539.9169014084505, "density": 8.724709280719752}, {"pressure": 6054.532777027955, "depth": 3549.8802816901407, "density": 8.724795726477518}, {"pressure": 6069.32540976033, "depth": 3559.843661971831, "density": 8.724884242758476}, {"pressure": 6084.118042492706, "depth": 3569.807042253521, "density": 8.72485533545026}, {"pressure": 6098.898038446542, "depth": 3579.7704225352113, "density": 8.72482807408172}, {"pressure": 6113.67803440038, "depth": 3589.7338028169015, "density": 8.724918644389552}, {"pressure": 6128.430341867595, "depth": 3599.6971830985913, "density": 8.725010881148144}, {"pressure": 6143.18264933481, "depth": 3609.6605633802815, "density": 8.724985398801486}, {"pressure": 6157.89931577206, "depth": 3619.6239436619717, "density": 8.724961287125781}, {"pressure": 6172.615982209308, "depth": 3629.587323943662, "density": 8.725055201498158}, {"pressure": 6187.289101215702, "depth": 3639.550704225352, "density": 8.72503246801654}, {"pressure": 6201.962220222096, "depth": 3649.5140845070423, "density": 8.725127858836586}, {"pressure": 6216.58390803029, "depth": 3659.4774647887325, "density": 8.725224529275165}, {"pressure": 6231.2055958384835, "depth": 3669.4408450704223, "density": 8.725203243084977}, {"pressure": 6245.7679956093625, "depth": 3679.4042253521125, "density": 8.725301131167708}, {"pressure": 6260.33039538024, "depth": 3689.3676056338027, "density": 8.725281199882321}, {"pressure": 6274.825681754691, "depth": 3699.330985915493, "density": 8.72526243324629}, {"pressure": 6289.320968129142, "depth": 3709.294366197183, "density": 8.725361466908288}, {"pressure": 6303.741351399518, "depth": 3719.257746478873, "density": 8.725343868673672}, {"pressure": 6318.161734669894, "depth": 3729.221126760563, "density": 8.72544384620073}, {"pressure": 6332.499464892692, "depth": 3739.1845070422532, "density": 8.725544566950703}, {"pressure": 6346.837195115491, "depth": 3749.1478873239435, "density": 8.725528111576253}, {"pressure": 6361.084566480935, "depth": 3759.1112676056337, "density": 8.725512536314124}, {"pressure": 6375.3319378463775, "depth": 3769.074647887324, "density": 8.725613985661}, {"pressure": 6389.4812923632635, "depth": 3779.038028169014, "density": 8.725715895316144}, {"pressure": 6403.630646880148, "depth": 3789.001408450704, "density": 8.72570133893207}, {"pressure": 6417.674377913056, "depth": 3798.964788732394, "density": 8.725687760567133}, {"pressure": 6431.718108945963, "depth": 3808.9281690140842, "density": 8.72579013170727}, {"pressure": 6445.648666831363, "depth": 3818.8915492957744, "density": 8.725777317734948}, {"pressure": 6459.579224716764, "depth": 3828.8549295774646, "density": 8.725879959384283}, {"pressure": 6473.389122249872, "depth": 3838.818309859155, "density": 8.725869264281345}, {"pressure": 6487.199019782982, "depth": 3848.781690140845, "density": 8.725973761344733}, {"pressure": 6500.880841698801, "depth": 3858.745070422535, "density": 8.72608060417617}, {"pressure": 6514.562663614622, "depth": 3868.708450704225, "density": 8.726073147861824}, {"pressure": 6528.10906332489, "depth": 3878.671830985915, "density": 8.726185206260807}, {"pressure": 6541.655463035158, "depth": 3888.6352112676054, "density": 8.726182997183383}, {"pressure": 6555.059121165001, "depth": 3898.5985915492956, "density": 8.726181238514418}, {"pressure": 6568.462779294843, "depth": 3908.561971830986, "density": 8.72629217272273}, {"pressure": 6581.716031182935, "depth": 3918.525352112676, "density": 8.726290849625327}, {"pressure": 6594.969283071025, "depth": 3928.488732394366, "density": 8.726401282766368}, {"pressure": 6608.138688104985, "depth": 3938.452112676056, "density": 8.72651225184041}, {"pressure": 6621.308093138945, "depth": 3948.415492957746, "density": 8.726511897602899}, {"pressure": 6634.476406276574, "depth": 3958.3788732394364, "density": 8.7265129808163}, {"pressure": 6647.644719414205, "depth": 3968.3422535211266, "density": 8.726625953156473}, {"pressure": 6660.813202984031, "depth": 3978.305633802817, "density": 8.726740854854686}, {"pressure": 6673.981686553855, "depth": 3988.269014084507, "density": 8.726743496680704}, {"pressure": 6687.150345616624, "depth": 3998.232394366197, "density": 8.72674768861073}, {"pressure": 6700.3190046793925, "depth": 4008.195774647887, "density": 8.726864620460704}, {"pressure": 6713.487843950564, "depth": 4018.159154929577, "density": 8.726983485987782}, {"pressure": 6726.656683221736, "depth": 4028.1225352112674, "density": 8.72698923153862}, {"pressure": 6739.8257079898485, "depth": 4038.0859154929576, "density": 8.727110088202766}, {"pressure": 6752.99473275796, "depth": 4048.049295774648, "density": 8.727117334714555}, {"pressure": 6766.163948255738, "depth": 4058.012676056338, "density": 8.727240186084735}, {"pressure": 6779.333163753517, "depth": 4067.976056338028, "density": 8.727248931492749}, {"pressure": 6792.502575216455, "depth": 4077.939436619718, "density": 8.727373781131783}, {"pressure": 6805.671986679392, "depth": 4087.902816901408, "density": 8.727384023163635}, {"pressure": 6818.841599295333, "depth": 4097.866197183099, "density": 8.727395751799103}, {"pressure": 6832.011211911274, "depth": 4107.829577464789, "density": 8.727522653560845}, {"pressure": 6845.181030792246, "depth": 4117.792957746478, "density": 8.727535888594325}, {"pressure": 6858.350849673221, "depth": 4127.756338028169, "density": 8.72766479597274}, {"pressure": 6871.520880068529, "depth": 4137.71971830986, "density": 8.727795663608738}, {"pressure": 6884.690910463835, "depth": 4147.683098591549, "density": 8.727810413813689}, {"pressure": 6897.861157810821, "depth": 4157.646478873239, "density": 8.727826550012594}, {"pressure": 6911.031405157806, "depth": 4167.609859154929, "density": 8.727959474502528}, {"pressure": 6924.201874779735, "depth": 4177.573239436619, "density": 8.727977093298799}, {"pressure": 6937.372344401663, "depth": 4187.536619718309, "density": 8.728112033261587}, {"pressure": 6950.5430415473065, "depth": 4197.5, "density": 8.728248940405871}, {"pressure": 6963.713738692947, "depth": 4207.46338028169, "density": 8.728268042457175}, {"pressure": 6976.884668564841, "depth": 4217.4267605633795, "density": 8.72828857465436}, {"pressure": 6990.0555984367375, "depth": 4227.39014084507, "density": 8.728427542207557}, {"pressure": 7003.226765709208, "depth": 4237.353521126761, "density": 8.728449642757285}, {"pressure": 7016.397932981677, "depth": 4247.316901408451, "density": 8.728590636091926}, {"pressure": 7029.569342777187, "depth": 4257.28028169014, "density": 8.728733615704126}, {"pressure": 7042.740752572698, "depth": 4267.243661971831, "density": 8.728757229558063}, {"pressure": 7055.912410181042, "depth": 4277.207042253522, "density": 8.728902242969488}, {"pressure": 7069.084067789386, "depth": 4287.170422535211, "density": 8.728927290180154}, {"pressure": 7082.255978791232, "depth": 4297.133802816901, "density": 8.729074541900276}, {"pressure": 7095.427889793079, "depth": 4307.097183098591, "density": 8.72910118662829}, {"pressure": 7108.600064500591, "depth": 4317.060563380281, "density": 8.72913206116744}, {"pressure": 7121.772239208105, "depth": 4327.023943661971, "density": 8.729283911000964}, {"pressure": 7134.944684626231, "depth": 4336.987323943662, "density": 8.729437161087489}, {"pressure": 7148.117130044356, "depth": 4346.950704225352, "density": 8.729468270933074}, {"pressure": 7161.289850353995, "depth": 4356.9140845070415, "density": 8.729500776640107}, {"pressure": 7174.462570663635, "depth": 4366.877464788732, "density": 8.729656113777885}, {"pressure": 7187.635571109941, "depth": 4376.840845070423, "density": 8.729690052759269}, {"pressure": 7200.808571556245, "depth": 4386.804225352113, "density": 8.729847437392609}, {"pressure": 7213.981857382019, "depth": 4396.767605633802, "density": 8.730006831042772}, {"pressure": 7227.155143207795, "depth": 4406.730985915493, "density": 8.730042239308371}, {"pressure": 7240.328719689525, "depth": 4416.694366197184, "density": 8.730203686134821}, {"pressure": 7253.502296171254, "depth": 4426.657746478873, "density": 8.730240477037645}, {"pressure": 7266.676168749623, "depth": 4436.621126760563, "density": 8.730278613013123}, {"pressure": 7279.850041327992, "depth": 4446.584507042253, "density": 8.730442158073812}, {"pressure": 7293.024214951294, "depth": 4456.547887323943, "density": 8.730607720994259}, {"pressure": 7306.198388574598, "depth": 4466.511267605633, "density": 8.730647427103156}, {"pressure": 7319.372868110727, "depth": 4476.474647887324, "density": 8.730688499587146}, {"pressure": 7332.547347646855, "depth": 4486.438028169014, "density": 8.730856167837983}, {"pressure": 7345.722138327035, "depth": 4496.4014084507035, "density": 8.731025864125632}, {"pressure": 7358.896929007217, "depth": 4506.364788732394, "density": 8.731068367427525}, {"pressure": 7372.07203606498, "depth": 4516.328169014085, "density": 8.7311122134001}, {"pressure": 7385.24714312274, "depth": 4526.2915492957745, "density": 8.731284021059075}, {"pressure": 7398.422571785686, "depth": 4536.254929577464, "density": 8.731457863993754}, {"pressure": 7411.598000448635, "depth": 4546.218309859155, "density": 8.73150312341065}, {"pressure": 7424.773756016721, "depth": 4556.181690140846, "density": 8.731549644531512}, {"pressure": 7437.949511584805, "depth": 4566.145070422535, "density": 8.731725603433903}, {"pressure": 7451.125599762805, "depth": 4576.108450704225, "density": 8.731903605922849}, {"pressure": 7464.301687940804, "depth": 4586.071830985915, "density": 8.731951426519148}, {"pressure": 7477.478120013056, "depth": 4596.035211267605, "density": 8.732135923328487}, {"pressure": 7490.654552085309, "depth": 4605.998591549295, "density": 8.732189173134328}, {"pressure": 7503.831340445799, "depth": 4615.961971830986, "density": 8.732244174632058}, {"pressure": 7517.0081288062875, "depth": 4625.925352112676, "density": 8.732431112261652}, {"pressure": 7530.185278703584, "depth": 4635.888732394365, "density": 8.732620085554515}, {"pressure": 7543.362428600883, "depth": 4645.852112676056, "density": 8.73267641745359}, {"pressure": 7556.539945132315, "depth": 4655.815492957747, "density": 8.732867466221743}, {"pressure": 7569.717461663746, "depth": 4665.7788732394365, "density": 8.732925079719374}, {"pressure": 7582.895349890977, "depth": 4675.742253521126, "density": 8.733118204027909}, {"pressure": 7596.073238118206, "depth": 4685.705633802816, "density": 8.733177095632351}, {"pressure": 7609.251502830565, "depth": 4695.669014084507, "density": 8.733237185861322}, {"pressure": 7622.429767542924, "depth": 4705.632394366197, "density": 8.733432418010837}, {"pressure": 7635.608413802892, "depth": 4715.595774647887, "density": 8.733629700080474}, {"pressure": 7648.787060062859, "depth": 4725.559154929577, "density": 8.733691056877658}, {"pressure": 7661.966092938895, "depth": 4735.522535211267, "density": 8.733890427516247}, {"pressure": 7675.145125814933, "depth": 4745.485915492957, "density": 8.733953011419404}, {"pressure": 7688.324550352026, "depth": 4755.449295774648, "density": 8.734016772326454}, {"pressure": 7701.503974889118, "depth": 4765.412676056338, "density": 8.734218268717163}, {"pressure": 7714.683796727436, "depth": 4775.376056338027, "density": 8.73442308896146}, {"pressure": 7727.863618565755, "depth": 4785.339436619718, "density": 8.734488624137557}, {"pressure": 7741.043846666993, "depth": 4795.302816901409, "density": 8.734556216237593}, {"pressure": 7754.224074768229, "depth": 4805.2661971830985, "density": 8.734763729817525}, {"pressure": 7767.404714476446, "depth": 4815.229577464788, "density": 8.734973306787397}, {"pressure": 7780.5853541846645, "depth": 4825.192957746478, "density": 8.735042083558989}, {"pressure": 7793.76641062948, "depth": 4835.156338028169, "density": 8.735253756708573}, {"pressure": 7806.947467074295, "depth": 4845.119718309859, "density": 8.735323567613218}, {"pressure": 7820.128945394243, "depth": 4855.083098591549, "density": 8.735394453468583}, {"pressure": 7833.310423714191, "depth": 4865.046478873239, "density": 8.735608261020651}, {"pressure": 7846.492328801714, "depth": 4875.009859154929, "density": 8.735824141517014}, {"pressure": 7859.67423388924, "depth": 4884.973239436619, "density": 8.735896151396032}, {"pressure": 7872.856570604615, "depth": 4894.93661971831, "density": 8.735969197863968}, {"pressure": 7886.0389073199885, "depth": 4904.9, "density": 8.73618721760049}, {"pressure": 7886.171172400873, "depth": 4905.0, "density": 8.73278057580183}, {"pressure": 7886.303437481758, "depth": 4905.1, "density": 8.732300556053032}, {"pressure": 7899.046378499045, "depth": 4914.734807692308, "density": 8.732564644232736}, {"pressure": 7911.7893195163315, "depth": 4924.369615384616, "density": 8.7327482969646}, {"pressure": 7924.532899154556, "depth": 4934.004423076924, "density": 8.732932333302418}, {"pressure": 7937.276478792781, "depth": 4943.639230769231, "density": 8.733197360878963}, {"pressure": 7950.020698788756, "depth": 4953.274038461539, "density": 8.73338171704157}, {"pressure": 7962.764918784732, "depth": 4962.908846153847, "density": 8.733647674061963}, {"pressure": 7975.509780963339, "depth": 4972.5436538461545, "density": 8.733832330637593}, {"pressure": 7988.254643141947, "depth": 4982.178461538462, "density": 8.734099217984218}, {"pressure": 8001.000149301447, "depth": 4991.81326923077, "density": 8.73436702551569}, {"pressure": 8013.745655460945, "depth": 5001.448076923077, "density": 8.734551972778766}, {"pressure": 8026.4918073710605, "depth": 5011.0828846153845, "density": 8.734737166471525}, {"pressure": 8039.237959281176, "depth": 5020.717692307692, "density": 8.73500591711064}, {"pressure": 8051.98475868098, "depth": 5030.3525, "density": 8.735275589930158}, {"pressure": 8064.7315580807835, "depth": 5039.987307692308, "density": 8.73546102802918}, {"pressure": 8077.477936263619, "depth": 5049.622115384615, "density": 8.735929431482745}, {"pressure": 8090.224314446456, "depth": 5059.256923076923, "density": 8.736196860791608}, {"pressure": 8102.971171469955, "depth": 5068.891730769231, "density": 8.736468731407468}, {"pressure": 8115.718028493453, "depth": 5078.526538461539, "density": 8.736643913324837}, {"pressure": 8128.465584728031, "depth": 5088.161346153846, "density": 8.736916711908385}, {"pressure": 8141.213140962609, "depth": 5097.796153846154, "density": 8.737092053460453}, {"pressure": 8153.961398004837, "depth": 5107.430961538462, "density": 8.737267512663326}, {"pressure": 8166.709655047065, "depth": 5117.06576923077, "density": 8.737541251518808}, {"pressure": 8179.458614442162, "depth": 5126.700576923077, "density": 8.737716806870687}, {"pressure": 8192.20757383726, "depth": 5136.335384615385, "density": 8.73799147531111}, {"pressure": 8204.957237077224, "depth": 5145.970192307692, "density": 8.738267062960588}, {"pressure": 8217.70690031719, "depth": 5155.605, "density": 8.738442689778045}, {"pressure": 8230.4572688697, "depth": 5165.239807692307, "density": 8.738618273752188}, {"pressure": 8243.207637422212, "depth": 5174.874615384615, "density": 8.738894804599514}, {"pressure": 8255.958713100084, "depth": 5184.509423076923, "density": 8.739070263198718}, {"pressure": 8268.709788777956, "depth": 5194.1442307692305, "density": 8.739347727403437}, {"pressure": 8281.461572991486, "depth": 5203.779038461538, "density": 8.739626113469658}, {"pressure": 8294.213357205013, "depth": 5213.413846153846, "density": 8.73980152600182}, {"pressure": 8306.965849832473, "depth": 5223.048653846154, "density": 8.740080014755833}, {"pressure": 8319.718342459935, "depth": 5232.683461538461, "density": 8.74025410954473}, {"pressure": 8332.471544883427, "depth": 5242.318269230769, "density": 8.740429981947093}, {"pressure": 8345.224747306916, "depth": 5251.953076923077, "density": 8.740711183464683}, {"pressure": 8357.97866559712, "depth": 5261.587884615385, "density": 8.740993956311991}, {"pressure": 8370.732583887322, "depth": 5271.222692307692, "density": 8.741170191484253}, {"pressure": 8383.487219215642, "depth": 5280.8575, "density": 8.741346106118366}, {"pressure": 8396.241854543963, "depth": 5290.492307692308, "density": 8.74162982224124}, {"pressure": 8408.997207650871, "depth": 5300.1271153846155, "density": 8.741914462345397}, {"pressure": 8421.752560757777, "depth": 5309.761923076923, "density": 8.742089996001713}, {"pressure": 8434.508632241985, "depth": 5319.396730769231, "density": 8.742265036919177}, {"pressure": 8447.26470372619, "depth": 5329.031538461538, "density": 8.742550622352049}, {"pressure": 8460.021494024259, "depth": 5338.666346153846, "density": 8.742725076197909}, {"pressure": 8472.778284322329, "depth": 5348.301153846153, "density": 8.743011598020269}, {"pressure": 8485.535793683848, "depth": 5357.935961538461, "density": 8.743334983863699}, {"pressure": 8498.293303045368, "depth": 5367.570769230769, "density": 8.743658359446009}, {"pressure": 8511.051531502355, "depth": 5377.2055769230765, "density": 8.743981740349792}, {"pressure": 8523.809759959342, "depth": 5386.840384615384, "density": 8.744305110991878}, {"pressure": 8536.568707287972, "depth": 5396.475192307692, "density": 8.744628486949427}, {"pressure": 8549.3276546166, "depth": 5406.11, "density": 8.74494897128692}, {"pressure": 8549.460085456943, "depth": 5406.21, "density": 8.74393545285845}, {"pressure": 8549.592516297289, "depth": 5406.31, "density": 8.743938456544807}, {"pressure": 8561.044950500944, "depth": 5414.9575, "density": 8.744198209526507}, {"pressure": 8572.497384704599, "depth": 5423.605, "density": 8.744455223158}, {"pressure": 8583.950710014407, "depth": 5432.2525, "density": 8.744707498087987}, {"pressure": 8595.404035324216, "depth": 5440.9, "density": 8.744955108401266}, {"pressure": 8595.536487568532, "depth": 5441.0, "density": 8.74457155573372}, {"pressure": 8595.66893981285, "depth": 5441.1, "density": 8.7445764354215}, {"pressure": 8607.399008246139, "depth": 5449.955714285715, "density": 8.745008558853193}, {"pressure": 8619.129076679428, "depth": 5458.811428571429, "density": 8.745440646492147}, {"pressure": 8630.860071465491, "depth": 5467.667142857143, "density": 8.745872718417761}, {"pressure": 8642.591066251556, "depth": 5476.522857142857, "density": 8.746304754547806}, {"pressure": 8654.322983616139, "depth": 5485.378571428571, "density": 8.746736774877059}, {"pressure": 8666.05490098072, "depth": 5494.234285714286, "density": 8.747168759407927}, {"pressure": 8677.787736057287, "depth": 5503.09, "density": 8.747600728026917}, {"pressure": 8689.520571133851, "depth": 5511.9457142857145, "density": 8.748032660844723}, {"pressure": 8701.25431752613, "depth": 5520.801428571429, "density": 8.748464577606466}, {"pressure": 8712.988063918408, "depth": 5529.657142857143, "density": 8.748896458564243}, {"pressure": 8724.722712953142, "depth": 5538.512857142858, "density": 8.7493283232725}, {"pressure": 8736.457361987876, "depth": 5547.368571428571, "density": 8.74976015217404}, {"pressure": 8748.192901284132, "depth": 5556.2242857142855, "density": 8.749990568336383}, {"pressure": 8759.92844058039, "depth": 5565.08, "density": 8.750395338119432}, {"pressure": 8760.04770803896, "depth": 5565.17, "density": 8.750395338119432}, {"pressure": 9436.274674555762, "depth": 5565.1900000000005, "density": 7.366746745194428}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978.0, "density": 6.042353224585787}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "RdVqZ7MzBp", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 4789.801500516719, "depth": 2072.0, "density": 10.7510484291191}, {"pressure": 4814.298000917049, "depth": 2085.37, "density": 10.7510484291191}, {"pressure": 4838.786914672316, "depth": 2098.7400000000002, "density": 10.754959024525355}, {"pressure": 4863.26845445362, "depth": 2112.11, "density": 10.758968355390564}, {"pressure": 4863.522969969829, "depth": 2112.31, "density": 7.4667216990344185}, {"pressure": 4885.036193884555, "depth": 2130.84, "density": 6.821220751000591}, {"pressure": 4906.554331148926, "depth": 2149.37, "density": 6.823147351111552}, {"pressure": 4928.078305254564, "depth": 2167.9, "density": 6.824629325448259}, {"pressure": 4928.31065423307, "depth": 2168.1, "density": 6.816421982415275}, {"pressure": 4951.443691813084, "depth": 2188.0091176470587, "density": 6.826817457850115}, {"pressure": 4974.584066437958, "depth": 2207.9182352941175, "density": 6.82932619455704}, {"pressure": 4997.731750188861, "depth": 2227.8273529411763, "density": 6.831139706269267}, {"pressure": 5020.88673167801, "depth": 2247.736470588235, "density": 6.833293350237927}, {"pressure": 5044.049013849802, "depth": 2267.645588235294, "density": 6.835447863131216}, {"pressure": 5067.218610357365, "depth": 2287.554705882353, "density": 6.837606405214577}, {"pressure": 5090.395527836949, "depth": 2307.463823529412, "density": 6.839766905729492}, {"pressure": 5113.579773955358, "depth": 2327.3729411764707, "density": 6.84227381294464}, {"pressure": 5136.771357325336, "depth": 2347.2820588235295, "density": 6.844094973594546}, {"pressure": 5159.970287122302, "depth": 2367.1911764705883, "density": 6.846262986154141}, {"pressure": 5183.17657287138, "depth": 2387.100294117647, "density": 6.848433809684197}, {"pressure": 5206.390224328896, "depth": 2407.009411764706, "density": 6.850607512414659}, {"pressure": 5229.6112514169, "depth": 2426.9185294117647, "density": 6.853128833366347}, {"pressure": 5252.839664189081, "depth": 2446.8276470588235, "density": 6.854963741047014}, {"pressure": 5276.075472808269, "depth": 2466.7367647058823, "density": 6.857146338005392}, {"pressure": 5299.318687532202, "depth": 2486.645882352941, "density": 6.859331962136632}, {"pressure": 5322.5693187060315, "depth": 2506.5550000000003, "density": 6.861520639237927}, {"pressure": 5345.827311076514, "depth": 2526.4641176470586, "density": 6.863693010490322}, {"pressure": 5369.09187914131, "depth": 2546.373235294118, "density": 6.86597890766978}, {"pressure": 5392.3627862489, "depth": 2566.2823529411767, "density": 6.867504293485389}, {"pressure": 5415.640041214832, "depth": 2586.1914705882355, "density": 6.8693776172975385}, {"pressure": 5438.923652775731, "depth": 2606.1005882352943, "density": 6.871253519385409}, {"pressure": 5462.2136296508925, "depth": 2626.009705882353, "density": 6.8731319946343925}, {"pressure": 5485.509980576347, "depth": 2645.918823529412, "density": 6.875013047983561}, {"pressure": 5508.812714323544, "depth": 2665.8279411764706, "density": 6.877242592842677}, {"pressure": 5532.121840772956, "depth": 2685.7370588235294, "density": 6.87878324762496}, {"pressure": 5555.4374036069, "depth": 2705.646176470588, "density": 6.880682696503668}, {"pressure": 5578.759437164634, "depth": 2725.5552941176475, "density": 6.882592279279992}, {"pressure": 5602.087950535851, "depth": 2745.464411764706, "density": 6.884504544526621}, {"pressure": 5625.422952709602, "depth": 2765.373529411765, "density": 6.886419462542454}, {"pressure": 5648.76445264419, "depth": 2785.282647058824, "density": 6.888683502650836}, {"pressure": 5672.112459305928, "depth": 2805.1917647058826, "density": 6.890257232022873}, {"pressure": 5695.466981691722, "depth": 2825.1008823529414, "density": 6.89218009488032}, {"pressure": 5718.828029602085, "depth": 2845.01, "density": 6.89410584997795}, {"pressure": 5719.172274315401, "depth": 2845.21, "density": 10.099107154577815}, {"pressure": 5753.469164060663, "depth": 2863.9433333333336, "density": 10.757126791647588}, {"pressure": 5787.767396360512, "depth": 2882.6766666666667, "density": 10.756972856325167}, {"pressure": 5822.066974201328, "depth": 2901.4100000000003, "density": 10.757394859055042}, {"pressure": 5822.323886494672, "depth": 2901.61, "density": 7.57491050233326}, {"pressure": 5841.404710830147, "depth": 2917.8433333333332, "density": 6.905676579445551}, {"pressure": 5860.489801416226, "depth": 2934.076666666667, "density": 6.907646690812454}, {"pressure": 5879.579205312817, "depth": 2950.31, "density": 6.9092078479338}, {"pressure": 5879.923578028184, "depth": 2950.5099999999998, "density": 10.153630503239402}, {"pressure": 5910.129903114247, "depth": 2967.0066666666667, "density": 10.758321707537235}, {"pressure": 5940.33736422191, "depth": 2983.503333333333, "density": 10.758073280916497}, {"pressure": 5970.546162102061, "depth": 3000.0, "density": 10.759202420905737}, {"pressure": 5981.615723471987, "depth": 3005.21, "density": 12.485494883102163}, {"pressure": 5981.91533384468, "depth": 3005.41, "density": 8.789669503722427}, {"pressure": 6004.539904620472, "depth": 3022.0325, "density": 7.996831721077149}, {"pressure": 6027.167516138171, "depth": 3038.6549999999997, "density": 7.997906495117058}, {"pressure": 6049.798175774911, "depth": 3055.2775, "density": 7.99946577219186}, {"pressure": 6072.431890938443, "depth": 3071.9, "density": 8.00006387653652}, {"pressure": 6072.704235818802, "depth": 3072.1, "density": 7.989781755081508}, {"pressure": 6099.798292135645, "depth": 3091.995238095238, "density": 8.00139249212034}, {"pressure": 6126.896762938162, "depth": 3111.890476190476, "density": 8.002696174083422}, {"pressure": 6153.9996610027965, "depth": 3131.785714285714, "density": 8.004003629174324}, {"pressure": 6181.106999164422, "depth": 3151.6809523809525, "density": 8.00531487464869}, {"pressure": 6208.218790316694, "depth": 3171.5761904761903, "density": 8.0066299278661}, {"pressure": 6235.335047411888, "depth": 3191.4714285714285, "density": 8.007948806137343}, {"pressure": 6262.455783459999, "depth": 3211.366666666667, "density": 8.009271526509373}, {"pressure": 6289.581011528481, "depth": 3231.2619047619046, "density": 8.010598105949889}, {"pressure": 6316.71074474199, "depth": 3251.157142857143, "density": 8.011928561352113}, {"pressure": 6343.845002487066, "depth": 3271.052380952381, "density": 8.013668087454429}, {"pressure": 6370.983878093829, "depth": 3290.947619047619, "density": 8.014628484755374}, {"pressure": 6398.127409647106, "depth": 3310.842857142857, "density": 8.016003474718088}, {"pressure": 6425.275611320595, "depth": 3330.7380952380954, "density": 8.017382650444421}, {"pressure": 6452.4284973344975, "depth": 3350.633333333333, "density": 8.018766025667977}, {"pressure": 6479.586081954232, "depth": 3370.5285714285715, "density": 8.020153613742304}, {"pressure": 6506.748379490912, "depth": 3390.4238095238097, "density": 8.021545428161687}, {"pressure": 6533.915361233895, "depth": 3410.3190476190475, "density": 8.022928763779682}, {"pressure": 6561.086542300357, "depth": 3430.214285714286, "density": 8.024168904235921}, {"pressure": 6588.261822879068, "depth": 3450.109523809524, "density": 8.025379568528747}, {"pressure": 6615.441213578711, "depth": 3470.004761904762, "density": 8.026593365768269}, {"pressure": 6642.624725066872, "depth": 3489.9, "density": 8.027810313350063}, {"pressure": 6642.898012520548, "depth": 3490.1, "density": 8.017434028498583}, {"pressure": 6670.128561305448, "depth": 3510.0267605633803, "density": 8.029173422811125}, {"pressure": 6697.362843291981, "depth": 3529.9535211267603, "density": 8.029870659687724}, {"pressure": 6724.600551350303, "depth": 3549.8802816901407, "density": 8.031284399286342}, {"pressure": 6751.838387269392, "depth": 3569.807042253521, "density": 8.032533095680748}, {"pressure": 6779.063583673085, "depth": 3589.7338028169015, "density": 8.036075932137447}, {"pressure": 6806.2567372787935, "depth": 3609.6605633802815, "density": 8.041586082663827}, {"pressure": 6833.407577948613, "depth": 3629.587323943662, "density": 8.04895121999289}, {"pressure": 6860.5058844924515, "depth": 3649.5140845070423, "density": 8.056988132933794}, {"pressure": 6887.541455567159, "depth": 3669.4408450704223, "density": 8.066950250393544}, {"pressure": 6914.504115144092, "depth": 3689.3676056338027, "density": 8.07764660718395}, {"pressure": 6941.383717981808, "depth": 3709.294366197183, "density": 8.089940071301276}, {"pressure": 6968.170155101943, "depth": 3729.221126760563, "density": 8.10430264315368}, {"pressure": 6994.853359261978, "depth": 3749.1478873239435, "density": 8.119543205506995}, {"pressure": 7021.423310423631, "depth": 3769.074647887324, "density": 8.136562184023198}, {"pressure": 7047.87004121695, "depth": 3789.001408450704, "density": 8.154153875812883}, {"pressure": 7074.183642391249, "depth": 3808.9281690140842, "density": 8.174966828872309}, {"pressure": 7100.354268245154, "depth": 3828.8549295774646, "density": 8.196953511728276}, {"pressure": 7126.3721117417535, "depth": 3848.781690140845, "density": 8.21974450419692}, {"pressure": 7152.22715080967, "depth": 3868.708450704225, "density": 8.245114203331404}, {"pressure": 7177.90978665745, "depth": 3888.6352112676054, "density": 8.2724142277812}, {"pressure": 7203.410502112611, "depth": 3908.561971830986, "density": 8.301314794807425}, {"pressure": 7228.719284019282, "depth": 3928.488732394366, "density": 8.33221563007533}, {"pressure": 7253.9221924773055, "depth": 3948.415492957746, "density": 8.35077620773721}, {"pressure": 7279.126315409379, "depth": 3968.3422535211266, "density": 8.351650245193559}, {"pressure": 7304.3332885716345, "depth": 3988.269014084507, "density": 8.352594698832194}, {"pressure": 7329.543120762705, "depth": 4008.195774647887, "density": 8.353070329675164}, {"pressure": 7354.755820845649, "depth": 4028.1225352112674, "density": 8.354492374014088}, {"pressure": 7379.971397748022, "depth": 4048.049295774648, "density": 8.355445638277748}, {"pressure": 7405.189860460209, "depth": 4067.976056338028, "density": 8.355929981787035}, {"pressure": 7430.411218035046, "depth": 4087.902816901408, "density": 8.357361124673663}, {"pressure": 7455.6354795874595, "depth": 4107.829577464789, "density": 8.358323388074183}, {"pressure": 7480.862654293438, "depth": 4127.756338028169, "density": 8.35928869203476}, {"pressure": 7506.092751390189, "depth": 4147.683098591549, "density": 8.359784939319795}, {"pressure": 7531.325780176975, "depth": 4167.609859154929, "density": 8.36122850305454}, {"pressure": 7556.561750015171, "depth": 4187.536619718309, "density": 8.362203051258621}, {"pressure": 7581.800670327343, "depth": 4207.46338028169, "density": 8.363180721727863}, {"pressure": 7607.042550599779, "depth": 4227.39014084507, "density": 8.363689197565735}, {"pressure": 7632.287400383287, "depth": 4247.316901408451, "density": 8.365145514189273}, {"pressure": 7657.535229289767, "depth": 4267.243661971831, "density": 8.366132677804641}, {"pressure": 7682.786046991043, "depth": 4287.170422535211, "density": 8.367123046279096}, {"pressure": 7708.0398604320435, "depth": 4307.097183098591, "density": 8.36764315471708}, {"pressure": 7733.296527479424, "depth": 4327.023943661971, "density": 8.36906128840564}, {"pressure": 7758.555929860188, "depth": 4346.950704225352, "density": 8.369967669785563}, {"pressure": 7783.818075568602, "depth": 4366.877464788732, "density": 8.370876700149601}, {"pressure": 7809.082972668621, "depth": 4386.804225352113, "density": 8.371315633874339}, {"pressure": 7834.350629293565, "depth": 4406.730985915493, "density": 8.372702800090668}, {"pressure": 7859.6210536458275, "depth": 4426.657746478873, "density": 8.373619915539617}, {"pressure": 7884.894253997142, "depth": 4446.584507042253, "density": 8.374066847826235}, {"pressure": 7910.170238688348, "depth": 4466.511267605633, "density": 8.375462392114892}, {"pressure": 7935.44901612915, "depth": 4486.438028169014, "density": 8.376387798958408}, {"pressure": 7960.7305947971645, "depth": 4506.364788732394, "density": 8.377316014949743}, {"pressure": 7986.014983237263, "depth": 4526.2915492957745, "density": 8.377773928926327}, {"pressure": 8011.302190061176, "depth": 4546.218309859155, "density": 8.379180963383531}, {"pressure": 8036.592223947181, "depth": 4566.145070422535, "density": 8.380117740031924}, {"pressure": 8061.8850936399285, "depth": 4586.071830985915, "density": 8.381057414312055}, {"pressure": 8087.180847130827, "depth": 4605.998591549295, "density": 8.381539644934474}, {"pressure": 8112.479542095461, "depth": 4625.925352112676, "density": 8.382987679194077}, {"pressure": 8137.781188779072, "depth": 4645.852112676056, "density": 8.383965762208584}, {"pressure": 8163.0857964306915, "depth": 4665.7788732394365, "density": 8.38494690998523}, {"pressure": 8188.393374352137, "depth": 4685.705633802816, "density": 8.385457572638906}, {"pressure": 8213.703931899301, "depth": 4705.632394366197, "density": 8.386918470222533}, {"pressure": 8239.01747848319, "depth": 4725.559154929577, "density": 8.387908918863202}, {"pressure": 8264.334023566516, "depth": 4745.485915492957, "density": 8.388902503072819}, {"pressure": 8289.653576662484, "depth": 4765.412676056338, "density": 8.389425448118066}, {"pressure": 8314.976098047964, "depth": 4785.339436619718, "density": 8.390882813416832}, {"pressure": 8340.301432349275, "depth": 4805.2661971830985, "density": 8.391814902553243}, {"pressure": 8365.629575057721, "depth": 4825.192957746478, "density": 8.39227154549004}, {"pressure": 8390.9605344731, "depth": 4845.119718309859, "density": 8.393678843044922}, {"pressure": 8416.294318953927, "depth": 4865.046478873239, "density": 8.39461495808432}, {"pressure": 8441.630936916, "depth": 4884.973239436619, "density": 8.39555386178768}, {"pressure": 8466.970396831302, "depth": 4904.9, "density": 8.396021408800332}, {"pressure": 8467.224737206201, "depth": 4905.1, "density": 8.431167885215727}, {"pressure": 8491.731392805828, "depth": 4924.369615384616, "density": 8.397007186711908}, {"pressure": 8516.240919528234, "depth": 4943.639230769231, "density": 8.39848140460438}, {"pressure": 8540.753319956442, "depth": 4962.908846153847, "density": 8.399466114142996}, {"pressure": 8565.268596703847, "depth": 4982.178461538462, "density": 8.39996115321909}, {"pressure": 8589.786752413946, "depth": 5001.448076923077, "density": 8.401438230066496}, {"pressure": 8614.307789760147, "depth": 5020.717692307692, "density": 8.402425657017204}, {"pressure": 8638.83171144552, "depth": 5039.987307692308, "density": 8.403414010205887}, {"pressure": 8663.358520684505, "depth": 5059.256923076923, "density": 8.40391266811628}, {"pressure": 8687.88822117758, "depth": 5078.526538461539, "density": 8.405394187529536}, {"pressure": 8712.420815664665, "depth": 5097.796153846154, "density": 8.406385849063936}, {"pressure": 8736.956306914226, "depth": 5117.06576923077, "density": 8.406887488768549}, {"pressure": 8761.494697722988, "depth": 5136.335384615385, "density": 8.408372027760091}, {"pressure": 8786.035990915663, "depth": 5155.605, "density": 8.409366564194139}, {"pressure": 8810.580189344646, "depth": 5174.874615384615, "density": 8.409870933322546}, {"pressure": 8835.127295889382, "depth": 5194.1442307692305, "density": 8.41135857855411}, {"pressure": 8859.677313455926, "depth": 5213.413846153846, "density": 8.412356074866711}, {"pressure": 8884.230244977012, "depth": 5232.683461538461, "density": 8.412863256646935}, {"pressure": 8908.786040634497, "depth": 5251.953076923077, "density": 8.414336006583099}, {"pressure": 8933.34459024683, "depth": 5271.222692307692, "density": 8.4152796820304}, {"pressure": 8957.905889230737, "depth": 5290.492307692308, "density": 8.415730300056905}, {"pressure": 8982.46993967166, "depth": 5309.761923076923, "density": 8.417164606498432}, {"pressure": 9007.036743684164, "depth": 5329.031538461538, "density": 8.418108150614268}, {"pressure": 9031.60630341131, "depth": 5348.301153846153, "density": 8.419052429075073}, {"pressure": 9056.178621024002, "depth": 5367.570769230769, "density": 8.419505744026601}, {"pressure": 9080.753698720211, "depth": 5386.840384615384, "density": 8.420943226930902}, {"pressure": 9105.331538724131, "depth": 5406.11, "density": 8.421889764585357}, {"pressure": 9105.72080572641, "depth": 5406.31, "density": 12.831377579647242}, {"pressure": 9141.704077255783, "depth": 5423.605, "density": 13.737279417752859}, {"pressure": 9177.68959411238, "depth": 5440.9, "density": 13.73903055728746}, {"pressure": 9178.105745003159, "depth": 5441.1, "density": 13.717549081762709}, {"pressure": 9214.960060781435, "depth": 5458.811428571429, "density": 13.739056636219292}, {"pressure": 9251.816705135228, "depth": 5476.522857142857, "density": 13.740797755842758}, {"pressure": 9288.675665029938, "depth": 5494.234285714286, "density": 13.740787933554229}, {"pressure": 9325.536927584471, "depth": 5511.9457142857145, "density": 13.741646350624409}, {"pressure": 9362.400480066986, "depth": 5529.657142857143, "density": 13.74250002134198}, {"pressure": 9399.266309889135, "depth": 5547.368571428571, "density": 13.744222258132252}, {"pressure": 9436.134404597635, "depth": 5565.08, "density": 13.744193334560212}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978.0, "density": 6.042353224585787}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 10000, "apb_data": {"pressure_variation": 1822.0, "initial_volume": 87.9675888778126, "volume_variation": -0.2845699540449118, "leakage_bbl": 0.0, "final_volume": 87.68301892376769, "leakage_mass": 0.0}, "operation_id": "mGNrD2K2bD"}, "_id": "mGNrD2K2bD-4", "type": "THERMAL", "id": 5, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PA", "backup": {"pressure_profile": [{"pressure": 4978.170000000001, "depth": 2072.0, "density": 1.6326750537290124}, {"pressure": 4980.010471269048, "depth": 2078.685, "density": 1.6171678782125012}, {"pressure": 4981.850942538096, "depth": 2085.37, "density": 1.6021353819839501}, {"pressure": 4983.6599332970645, "depth": 2092.0550000000003, "density": 1.5904576496813445}, {"pressure": 4985.468924056033, "depth": 2098.7400000000002, "density": 1.5790787614434523}, {"pressure": 4987.253904624058, "depth": 2105.425, "density": 1.57021683571682}, {"pressure": 4989.0388851920825, "depth": 2112.11, "density": 1.5615930032638525}, {"pressure": 4989.065426407149, "depth": 2112.21, "density": 1.5614560766592556}, {"pressure": 4989.091967622215, "depth": 2112.31, "density": 1.5612855057477077}, {"pressure": 4991.530252615735, "depth": 2121.575, "density": 1.5492884950825379}, {"pressure": 4993.968537609257, "depth": 2130.84, "density": 1.537558139821462}, {"pressure": 4996.377250273594, "depth": 2140.105, "density": 1.5303080123444368}, {"pressure": 4998.785962937932, "depth": 2149.37, "density": 1.5230761796365058}, {"pressure": 5001.176897526255, "depth": 2158.635, "density": 1.5187570412447489}, {"pressure": 5003.567832114579, "depth": 2167.9, "density": 1.5144365887484423}, {"pressure": 5003.593570211366, "depth": 2168.0, "density": 1.5144392501978508}, {"pressure": 5003.619308308151, "depth": 2168.1, "density": 1.5144419116384673}, {"pressure": 5006.18293655635, "depth": 2178.054558823529, "density": 1.5152516248050298}, {"pressure": 5008.746564804548, "depth": 2188.0091176470587, "density": 1.5160614090266484}, {"pressure": 5011.312373328877, "depth": 2197.9636764705883, "density": 1.5165665821309153}, {"pressure": 5013.878181853203, "depth": 2207.9182352941175, "density": 1.5170717376258966}, {"pressure": 5016.445382036986, "depth": 2217.8727941176467, "density": 1.517405942051456}, {"pressure": 5019.01258222077, "depth": 2227.8273529411763, "density": 1.5177400790583015}, {"pressure": 5021.580731512299, "depth": 2237.781911764706, "density": 1.5179784131135134}, {"pressure": 5024.148880803829, "depth": 2247.736470588235, "density": 1.5182166518203588}, {"pressure": 5026.717731717968, "depth": 2257.6910294117642, "density": 1.5184014632006353}, {"pressure": 5029.286582632107, "depth": 2267.645588235294, "density": 1.5185861636506364}, {"pressure": 5031.8559997996745, "depth": 2277.6001470588235, "density": 1.5187432174352542}, {"pressure": 5034.425416967241, "depth": 2287.554705882353, "density": 1.5189001522210244}, {"pressure": 5036.995334814287, "depth": 2297.5092647058827, "density": 1.5190440735394517}, {"pressure": 5039.565252661331, "depth": 2307.463823529412, "density": 1.5191878720542107}, {"pressure": 5042.135638780327, "depth": 2317.418382352941, "density": 1.5193249861287943}, {"pressure": 5044.706024899324, "depth": 2327.3729411764707, "density": 1.5194619754395058}, {"pressure": 5047.276863115225, "depth": 2337.3275000000003, "density": 1.5195958009570412}, {"pressure": 5049.847701331125, "depth": 2347.2820588235295, "density": 1.5197295007763014}, {"pressure": 5052.418984600034, "depth": 2357.2366176470587, "density": 1.5198620342871503}, {"pressure": 5054.990267868942, "depth": 2367.1911764705883, "density": 1.5199944417469864}, {"pressure": 5057.561994371499, "depth": 2377.145735294118, "density": 1.520126823572906}, {"pressure": 5060.133720874056, "depth": 2387.100294117647, "density": 1.5202590793269146}, {"pressure": 5062.705891741772, "depth": 2397.0548529411763, "density": 1.5203919497289462}, {"pressure": 5065.278062609487, "depth": 2407.009411764706, "density": 1.5205246942241304}, {"pressure": 5067.850680623487, "depth": 2416.9639705882355, "density": 1.5206584092659918}, {"pressure": 5070.423298637487, "depth": 2426.9185294117647, "density": 1.520791998669146}, {"pressure": 5072.996367513265, "depth": 2436.873088235294, "density": 1.5209267680614151}, {"pressure": 5075.569436389042, "depth": 2446.8276470588235, "density": 1.521061412143497}, {"pressure": 5078.142960396133, "depth": 2456.782205882353, "density": 1.521197358934499}, {"pressure": 5080.716484403224, "depth": 2466.7367647058823, "density": 1.521333180778937}, {"pressure": 5083.290468133721, "depth": 2476.6913235294114, "density": 1.5214703774108502}, {"pressure": 5085.8644518642195, "depth": 2486.645882352941, "density": 1.5216074494801723}, {"pressure": 5088.438900102025, "depth": 2496.6004411764707, "density": 1.5217459395472117}, {"pressure": 5091.013348339832, "depth": 2506.5550000000003, "density": 1.5218843054475675}, {"pressure": 5093.5882773783105, "depth": 2516.5095588235295, "density": 1.5220234514861628}, {"pressure": 5096.163206416789, "depth": 2526.4641176470586, "density": 1.52217003967076}, {"pressure": 5098.738652548107, "depth": 2536.4186764705883, "density": 1.5223233475833982}, {"pressure": 5101.314098679424, "depth": 2546.373235294118, "density": 1.522476525500692}, {"pressure": 5103.890069987645, "depth": 2556.3277941176475, "density": 1.522631388399006}, {"pressure": 5106.466041295866, "depth": 2566.2823529411767, "density": 1.5227861218108405}, {"pressure": 5109.042543265492, "depth": 2576.236911764706, "density": 1.5229424395706495}, {"pressure": 5111.619045235119, "depth": 2586.1914705882355, "density": 1.5230986283203918}, {"pressure": 5114.196083108256, "depth": 2596.146029411765, "density": 1.5232563542132664}, {"pressure": 5116.773120981393, "depth": 2606.1005882352943, "density": 1.523413951556904}, {"pressure": 5119.350699879829, "depth": 2616.0551470588234, "density": 1.5235730570054886}, {"pressure": 5121.928278778265, "depth": 2626.009705882353, "density": 1.523732034355825}, {"pressure": 5124.506403740165, "depth": 2635.9642647058827, "density": 1.5238925000499421}, {"pressure": 5127.084528702065, "depth": 2645.918823529412, "density": 1.5240528380898977}, {"pressure": 5129.663204719964, "depth": 2655.873382352941, "density": 1.5242146579215845}, {"pressure": 5132.241880737863, "depth": 2665.8279411764706, "density": 1.5243763505404617}, {"pressure": 5134.821112766305, "depth": 2675.7825000000003, "density": 1.5245394987109318}, {"pressure": 5137.400344794746, "depth": 2685.7370588235294, "density": 1.52470252010102}, {"pressure": 5139.98013770613, "depth": 2695.6916176470586, "density": 1.5248670006405278}, {"pressure": 5142.5599306175145, "depth": 2705.646176470588, "density": 1.525031354832567}, {"pressure": 5145.140289395149, "depth": 2715.600735294118, "density": 1.5251972955707855}, {"pressure": 5147.720648172784, "depth": 2725.5552941176475, "density": 1.5253631104338843}, {"pressure": 5150.301580561934, "depth": 2735.5098529411766, "density": 1.525532186038876}, {"pressure": 5152.882512951084, "depth": 2745.464411764706, "density": 1.5257011367669961}, {"pressure": 5155.464031044873, "depth": 2755.4189705882354, "density": 1.5258734685910849}, {"pressure": 5158.045549138663, "depth": 2765.373529411765, "density": 1.5260456765728374}, {"pressure": 5160.627662816357, "depth": 2775.3280882352947, "density": 1.5262204476873449}, {"pressure": 5163.20977649405, "depth": 2785.282647058824, "density": 1.526395095735353}, {"pressure": 5165.792494500325, "depth": 2795.237205882353, "density": 1.5265728879019826}, {"pressure": 5168.375212506599, "depth": 2805.1917647058826, "density": 1.5267505579596126}, {"pressure": 5170.9585489164465, "depth": 2815.1463235294123, "density": 1.5269329077448528}, {"pressure": 5173.5418853262945, "depth": 2825.1008823529414, "density": 1.5271151368599367}, {"pressure": 5176.125853920239, "depth": 2835.0554411764706, "density": 1.5273007816298598}, {"pressure": 5178.709822514185, "depth": 2845.01, "density": 1.5274863067690232}, {"pressure": 5178.735797810467, "depth": 2845.11, "density": 1.527507027035886}, {"pressure": 5178.761773106749, "depth": 2845.21, "density": 1.527515263545697}, {"pressure": 5181.197347932048, "depth": 2854.576666666667, "density": 1.528858574686019}, {"pressure": 5183.632922757345, "depth": 2863.9433333333336, "density": 1.5302021259322132}, {"pressure": 5186.072135574532, "depth": 2873.3100000000004, "density": 1.531171497121207}, {"pressure": 5188.5113483917185, "depth": 2882.6766666666667, "density": 1.532140997416628}, {"pressure": 5190.953231949591, "depth": 2892.0433333333335, "density": 1.5328657954965703}, {"pressure": 5193.395115507465, "depth": 2901.4100000000003, "density": 1.5335906499307397}, {"pressure": 5193.421182933868, "depth": 2901.51, "density": 1.5335640233340468}, {"pressure": 5193.447250360272, "depth": 2901.61, "density": 1.5335747913761828}, {"pressure": 5195.561802554548, "depth": 2909.7266666666665, "density": 1.5329056382270747}, {"pressure": 5197.6763547488235, "depth": 2917.8433333333332, "density": 1.5322361938652962}, {"pressure": 5199.789535211164, "depth": 2925.96, "density": 1.5318777103325034}, {"pressure": 5201.902715673503, "depth": 2934.076666666667, "density": 1.531519015813649}, {"pressure": 5204.015207516314, "depth": 2942.1933333333336, "density": 1.5313553020761568}, {"pressure": 5206.1276993591255, "depth": 2950.31, "density": 1.5311914275755356}, {"pressure": 5206.153738037673, "depth": 2950.41, "density": 1.531219369404115}, {"pressure": 5206.17977671622, "depth": 2950.5099999999998, "density": 1.5312145220116222}, {"pressure": 5208.329267104136, "depth": 2958.758333333333, "density": 1.53222132256996}, {"pressure": 5210.478757492053, "depth": 2967.0066666666667, "density": 1.5332282632323362}, {"pressure": 5212.630712819548, "depth": 2975.255, "density": 1.5339947186404823}, {"pressure": 5214.7826681470415, "depth": 2983.503333333333, "density": 1.534761251270514}, {"pressure": 5216.936528212382, "depth": 2991.7516666666666, "density": 1.5353623753281624}, {"pressure": 5219.090388277724, "depth": 3000.0, "density": 8.730742348638412}, {"pressure": 5222.4276768327945, "depth": 3002.605, "density": 8.730660249592455}, {"pressure": 5225.764965387864, "depth": 3005.21, "density": 8.730578158938783}, {"pressure": 5225.913463143526, "depth": 3005.31, "density": 8.73228095631019}, {"pressure": 5226.06196089919, "depth": 3005.41, "density": 8.732289979488236}, {"pressure": 5238.403809119354, "depth": 3013.7212499999996, "density": 8.733039865767955}, {"pressure": 5250.745657339519, "depth": 3022.0325, "density": 8.733789655458363}, {"pressure": 5263.087540644536, "depth": 3030.34375, "density": 8.734539349322127}, {"pressure": 5275.429423949553, "depth": 3038.6549999999997, "density": 8.735284469347292}, {"pressure": 5287.771345743683, "depth": 3046.96625, "density": 8.73526496249214}, {"pressure": 5300.113267537814, "depth": 3055.2775, "density": 8.735246378876475}, {"pressure": 5312.455231104351, "depth": 3063.58875, "density": 8.735136725373202}, {"pressure": 5324.797194670889, "depth": 3071.9, "density": 8.73491183254522}, {"pressure": 5324.945700772874, "depth": 3072.0, "density": 8.726427702709508}, {"pressure": 5325.09420687486, "depth": 3072.1, "density": 8.726425007882641}, {"pressure": 5339.86723694902, "depth": 3082.0476190476193, "density": 8.72615700227457}, {"pressure": 5354.640267023177, "depth": 3091.995238095238, "density": 8.725887716900697}, {"pressure": 5369.413365852496, "depth": 3101.942857142857, "density": 8.725618575507497}, {"pressure": 5384.186464681813, "depth": 3111.890476190476, "density": 8.72534957660143}, {"pressure": 5398.959637428489, "depth": 3121.838095238095, "density": 8.725415787821428}, {"pressure": 5413.732810175166, "depth": 3131.785714285714, "density": 8.725395850177467}, {"pressure": 5428.5060616529145, "depth": 3141.7333333333336, "density": 8.72537755203456}, {"pressure": 5443.279313130663, "depth": 3151.6809523809525, "density": 8.725445671461072}, {"pressure": 5458.052648875143, "depth": 3161.6285714285714, "density": 8.725515556149086}, {"pressure": 5472.825984619624, "depth": 3171.5761904761903, "density": 8.725498909028515}, {"pressure": 5487.599410800492, "depth": 3181.523809523809, "density": 8.725571340898018}, {"pressure": 5502.372836981359, "depth": 3191.4714285714285, "density": 8.725556896885776}, {"pressure": 5517.1463680223505, "depth": 3201.419047619048, "density": 8.725634766183473}, {"pressure": 5531.919899063341, "depth": 3211.366666666667, "density": 8.725625225001282}, {"pressure": 5546.6935457794, "depth": 3221.3142857142857, "density": 8.725704925499139}, {"pressure": 5561.467192495459, "depth": 3231.2619047619046, "density": 8.725696930350562}, {"pressure": 5576.240960601532, "depth": 3241.2095238095235, "density": 8.725690353923058}, {"pressure": 5591.014728707606, "depth": 3251.157142857143, "density": 8.725771949460123}, {"pressure": 5605.788623928379, "depth": 3261.104761904762, "density": 8.725855319057809}, {"pressure": 5620.562519149151, "depth": 3271.052380952381, "density": 8.725850382395544}, {"pressure": 5635.336547216557, "depth": 3281.0, "density": 8.72584694950497}, {"pressure": 5650.110575283962, "depth": 3290.947619047619, "density": 8.725932233178115}, {"pressure": 5664.884741936617, "depth": 3300.895238095238, "density": 8.725930373013297}, {"pressure": 5679.658908589273, "depth": 3310.842857142857, "density": 8.726017505770448}, {"pressure": 5694.43321957238, "depth": 3320.7904761904765, "density": 8.726017218892949}, {"pressure": 5709.207530555486, "depth": 3330.7380952380954, "density": 8.726106204074709}, {"pressure": 5723.981992259231, "depth": 3340.6857142857143, "density": 8.726108441503728}, {"pressure": 5738.7564539629775, "depth": 3350.633333333333, "density": 8.726200344630142}, {"pressure": 5753.53108585335, "depth": 3360.580952380952, "density": 8.726299946144978}, {"pressure": 5768.305717743724, "depth": 3370.5285714285715, "density": 8.726309366982969}, {"pressure": 5783.080533879018, "depth": 3380.476190476191, "density": 8.726410823378263}, {"pressure": 5797.85535001431, "depth": 3390.4238095238097, "density": 8.726421622027344}, {"pressure": 5812.630357350012, "depth": 3400.3714285714286, "density": 8.72643395709016}, {"pressure": 5827.405364685712, "depth": 3410.3190476190475, "density": 8.726537331051487}, {"pressure": 5842.180569007046, "depth": 3420.2666666666664, "density": 8.72664247907778}, {"pressure": 5856.955773328381, "depth": 3430.214285714286, "density": 8.72665749906477}, {"pressure": 5871.731180349156, "depth": 3440.161904761905, "density": 8.726674002866396}, {"pressure": 5886.506587369931, "depth": 3450.109523809524, "density": 8.726781080361233}, {"pressure": 5901.282202827039, "depth": 3460.057142857143, "density": 8.726889966978222}, {"pressure": 5916.057818284146, "depth": 3470.004761904762, "density": 8.726908083586713}, {"pressure": 5930.833647531152, "depth": 3479.9523809523807, "density": 8.72701883916322}, {"pressure": 5945.609476778157, "depth": 3489.9, "density": 8.727037143281526}, {"pressure": 5945.758086259865, "depth": 3490.0, "density": 8.731261281767729}, {"pressure": 5945.9066957415735, "depth": 3490.1, "density": 8.732084908016416}, {"pressure": 5960.714608497667, "depth": 3500.06338028169, "density": 8.731999930717299}, {"pressure": 5975.522521253758, "depth": 3510.0267605633803, "density": 8.732027974217308}, {"pressure": 5990.330338177649, "depth": 3519.9901408450705, "density": 8.732058405959263}, {"pressure": 6005.138155101538, "depth": 3529.9535211267603, "density": 8.731975508629233}, {"pressure": 6019.945634234331, "depth": 3539.9169014084505, "density": 8.731894459652251}, {"pressure": 6034.753113367123, "depth": 3549.8802816901407, "density": 8.731927452731364}, {"pressure": 6049.557690772977, "depth": 3559.843661971831, "density": 8.731962787858844}, {"pressure": 6064.36226817883, "depth": 3569.807042253521, "density": 8.731883279067333}, {"pressure": 6079.154026970471, "depth": 3579.7704225352113, "density": 8.73180702503673}, {"pressure": 6093.94578576211, "depth": 3589.7338028169015, "density": 8.731844695685288}, {"pressure": 6108.709664587311, "depth": 3599.6971830985913, "density": 8.731884324891036}, {"pressure": 6123.473543412511, "depth": 3609.6605633802815, "density": 8.731810408934592}, {"pressure": 6138.201585562278, "depth": 3619.6239436619717, "density": 8.731738176794185}, {"pressure": 6152.929627712042, "depth": 3629.587323943662, "density": 8.731779811195095}, {"pressure": 6167.613921943836, "depth": 3639.550704225352, "density": 8.731709441960485}, {"pressure": 6182.298216175632, "depth": 3649.5140845070423, "density": 8.731752862860187}, {"pressure": 6196.930876004848, "depth": 3659.4774647887325, "density": 8.731800039004868}, {"pressure": 6211.563535834064, "depth": 3669.4408450704223, "density": 8.731733367617029}, {"pressure": 6226.13671033319, "depth": 3679.4042253521125, "density": 8.731783675001513}, {"pressure": 6240.7098848323185, "depth": 3689.3676056338027, "density": 8.731720034735886}, {"pressure": 6255.215746068648, "depth": 3699.330985915493, "density": 8.731657831842458}, {"pressure": 6269.721607304977, "depth": 3709.294366197183, "density": 8.731709592610208}, {"pressure": 6284.152362306237, "depth": 3719.257746478873, "density": 8.7316488412683}, {"pressure": 6298.583117307496, "depth": 3729.221126760563, "density": 8.731701841823659}, {"pressure": 6312.931013101902, "depth": 3739.1845070422532, "density": 8.731755870720646}, {"pressure": 6327.27890889631, "depth": 3749.1478873239435, "density": 8.731696577839898}, {"pressure": 6341.536236846727, "depth": 3759.1112676056337, "density": 8.731638454624788}, {"pressure": 6355.793564797144, "depth": 3769.074647887324, "density": 8.731693520431369}, {"pressure": 6369.952664538517, "depth": 3779.038028169014, "density": 8.73174934196369}, {"pressure": 6384.111764279888, "depth": 3789.001408450704, "density": 8.731692549263363}, {"pressure": 6398.1650277029585, "depth": 3798.964788732394, "density": 8.731636876824824}, {"pressure": 6412.218291126029, "depth": 3808.9281690140842, "density": 8.73169345989543}, {"pressure": 6426.158166505974, "depth": 3818.8915492957744, "density": 8.731639012783473}, {"pressure": 6440.098041885919, "depth": 3828.8549295774646, "density": 8.731696148666725}, {"pressure": 6453.917037341927, "depth": 3838.818309859155, "density": 8.731642927088853}, {"pressure": 6467.736032797935, "depth": 3848.781690140845, "density": 8.731700470455262}, {"pressure": 6481.426721583414, "depth": 3858.745070422535, "density": 8.731758215757578}, {"pressure": 6495.1174103688945, "depth": 3868.708450704225, "density": 8.731706048686684}, {"pressure": 6508.672434733808, "depth": 3878.671830985915, "density": 8.731763921363292}, {"pressure": 6522.227459098719, "depth": 3888.6352112676054, "density": 8.731712625471987}, {"pressure": 6535.639491967894, "depth": 3898.5985915492956, "density": 8.731660861682654}, {"pressure": 6549.051524837069, "depth": 3908.561971830986, "density": 8.73171748726516}, {"pressure": 6562.31290339797, "depth": 3918.525352112676, "density": 8.731670122871336}, {"pressure": 6575.574281958872, "depth": 3928.488732394366, "density": 8.731730810077048}, {"pressure": 6588.7516235162375, "depth": 3938.452112676056, "density": 8.731794577086692}, {"pressure": 6601.928965073601, "depth": 3948.415492957746, "density": 8.731750514644878}, {"pressure": 6615.105077415266, "depth": 3958.3788732394364, "density": 8.731708156045391}, {"pressure": 6628.281189756932, "depth": 3968.3422535211266, "density": 8.731774211441708}, {"pressure": 6641.457336817963, "depth": 3978.305633802817, "density": 8.731842462651176}, {"pressure": 6654.633483878994, "depth": 3988.269014084507, "density": 8.731801949605687}, {"pressure": 6667.8096717130575, "depth": 3998.232394366197, "density": 8.731763161900961}, {"pressure": 6680.9858595471205, "depth": 4008.195774647887, "density": 8.73183373312349}, {"pressure": 6694.162094325176, "depth": 4018.159154929577, "density": 8.731906507613658}, {"pressure": 6707.338329103232, "depth": 4028.1225352112674, "density": 8.731869499956948}, {"pressure": 6720.514616888152, "depth": 4038.0859154929576, "density": 8.731944542093528}, {"pressure": 6733.690904673071, "depth": 4048.049295774648, "density": 8.731909414203152}, {"pressure": 6746.86725154207, "depth": 4058.012676056338, "density": 8.731986736252564}, {"pressure": 6760.043598411068, "depth": 4067.976056338028, "density": 8.731953196276336}, {"pressure": 6773.220011155737, "depth": 4077.939436619718, "density": 8.732032789250857}, {"pressure": 6786.396423900407, "depth": 4087.902816901408, "density": 8.732001329391597}, {"pressure": 6799.572908598631, "depth": 4097.866197183099, "density": 8.731972210119425}, {"pressure": 6812.7493932968555, "depth": 4107.829577464789, "density": 8.732054128601915}, {"pressure": 6825.92595601816, "depth": 4117.792957746478, "density": 8.732026768803856}, {"pressure": 6839.102518739466, "depth": 4127.756338028169, "density": 8.732110978225094}, {"pressure": 6852.279165561655, "depth": 4137.71971830986, "density": 8.732197430015802}, {"pressure": 6865.455812383841, "depth": 4147.683098591549, "density": 8.732171883268192}, {"pressure": 6878.632550896593, "depth": 4157.646478873239, "density": 8.732149592223022}, {"pressure": 6891.809289409346, "depth": 4167.609859154929, "density": 8.732240224686697}, {"pressure": 6904.986132742606, "depth": 4177.573239436619, "density": 8.732220845103267}, {"pressure": 6918.162976075869, "depth": 4187.536619718309, "density": 8.732315086484046}, {"pressure": 6931.339930918215, "depth": 4197.5, "density": 8.73241157751514}, {"pressure": 6944.516885760559, "depth": 4207.46338028169, "density": 8.732393997225321}, {"pressure": 6957.693958171796, "depth": 4217.4267605633795, "density": 8.732378120213767}, {"pressure": 6970.871030583036, "depth": 4227.39014084507, "density": 8.732476975253379}, {"pressure": 6984.048226506596, "depth": 4237.353521126761, "density": 8.732462878267977}, {"pressure": 6997.225422430153, "depth": 4247.316901408451, "density": 8.73256404906489}, {"pressure": 7010.402747700289, "depth": 4257.28028169014, "density": 8.73266748196776}, {"pressure": 7023.580072970426, "depth": 4267.243661971831, "density": 8.732655279523378}, {"pressure": 7036.757533167189, "depth": 4277.207042253522, "density": 8.73276103355886}, {"pressure": 7049.934993363949, "depth": 4287.170422535211, "density": 8.732750587150159}, {"pressure": 7063.11259473567, "depth": 4297.133802816901, "density": 8.73285866638467}, {"pressure": 7076.290196107392, "depth": 4307.097183098591, "density": 8.732849892003035}, {"pressure": 7089.46794484564, "depth": 4317.060563380281, "density": 8.732842697904035}, {"pressure": 7102.64569358389, "depth": 4327.023943661971, "density": 8.732953148410838}, {"pressure": 7115.823595365236, "depth": 4336.987323943662, "density": 8.733065789274708}, {"pressure": 7129.001497146581, "depth": 4346.950704225352, "density": 8.733059102560045}, {"pressure": 7142.179555012449, "depth": 4356.9140845070415, "density": 8.733054088893216}, {"pressure": 7155.35761287832, "depth": 4366.877464788732, "density": 8.733167955132458}, {"pressure": 7168.535832649633, "depth": 4376.840845070423, "density": 8.733164655060095}, {"pressure": 7181.714052420945, "depth": 4386.804225352113, "density": 8.73328086837837}, {"pressure": 7194.892440212209, "depth": 4396.767605633802, "density": 8.733399382735824}, {"pressure": 7208.070828003475, "depth": 4406.730985915493, "density": 8.73339784178088}, {"pressure": 7221.249389946442, "depth": 4416.694366197184, "density": 8.733518711329614}, {"pressure": 7234.427951889407, "depth": 4426.657746478873, "density": 8.733518846982903}, {"pressure": 7247.606694295713, "depth": 4436.621126760563, "density": 8.733520591112207}, {"pressure": 7260.785436702019, "depth": 4446.584507042253, "density": 8.733643869448358}, {"pressure": 7273.964365726187, "depth": 4456.547887323943, "density": 8.73376946344141}, {"pressure": 7287.143294750356, "depth": 4466.511267605633, "density": 8.733772949890175}, {"pressure": 7300.322416407997, "depth": 4476.474647887324, "density": 8.73377814735961}, {"pressure": 7313.501538065636, "depth": 4486.438028169014, "density": 8.73390615808718}, {"pressure": 7326.68085795019, "depth": 4496.4014084507035, "density": 8.734036493007732}, {"pressure": 7339.8601778347465, "depth": 4506.364788732394, "density": 8.7340434718618}, {"pressure": 7353.039702020724, "depth": 4516.328169014085, "density": 8.734052072202521}, {"pressure": 7366.219226206699, "depth": 4526.2915492957745, "density": 8.734184833341665}, {"pressure": 7379.398960813487, "depth": 4536.254929577464, "density": 8.734319929209999}, {"pressure": 7392.578695420275, "depth": 4546.218309859155, "density": 8.734330239175414}, {"pressure": 7405.758646594525, "depth": 4556.181690140846, "density": 8.734342121142594}, {"pressure": 7418.938597768774, "depth": 4566.145070422535, "density": 8.734479649479624}, {"pressure": 7432.118771815487, "depth": 4576.108450704225, "density": 8.734619520938194}, {"pressure": 7445.298945862198, "depth": 4586.071830985915, "density": 8.734633068022001}, {"pressure": 7458.479349373353, "depth": 4596.035211267605, "density": 8.734776335520314}, {"pressure": 7471.65975288451, "depth": 4605.998591549295, "density": 8.734792400489187}, {"pressure": 7484.840400892817, "depth": 4615.961971830986, "density": 8.734813548006443}, {"pressure": 7498.021048901123, "depth": 4625.925352112676, "density": 8.734963240167275}, {"pressure": 7511.201952139921, "depth": 4635.888732394365, "density": 8.735115269015942}, {"pressure": 7524.382855378719, "depth": 4645.852112676056, "density": 8.735138054560979}, {"pressure": 7537.564019877523, "depth": 4655.815492957747, "density": 8.735292507343308}, {"pressure": 7550.745184376324, "depth": 4665.7788732394365, "density": 8.735316908656293}, {"pressure": 7563.926620229262, "depth": 4675.742253521126, "density": 8.735476556743498}, {"pressure": 7577.108056082199, "depth": 4685.705633802816, "density": 8.735504991032581}, {"pressure": 7590.289773184795, "depth": 4695.669014084507, "density": 8.735534947919408}, {"pressure": 7603.47149028739, "depth": 4705.632394366197, "density": 8.735697028214293}, {"pressure": 7616.65349436929, "depth": 4715.595774647887, "density": 8.735861457446767}, {"pressure": 7629.835498451191, "depth": 4725.559154929577, "density": 8.735893063116364}, {"pressure": 7643.0177954996, "depth": 4735.522535211267, "density": 8.736059891800943}, {"pressure": 7656.2000925480115, "depth": 4745.485915492957, "density": 8.736092939094494}, {"pressure": 7669.382688780324, "depth": 4755.449295774648, "density": 8.736127647005103}, {"pressure": 7682.565285012635, "depth": 4765.412676056338, "density": 8.73629690604441}, {"pressure": 7695.748186307758, "depth": 4775.376056338027, "density": 8.736468525063774}, {"pressure": 7708.931087602882, "depth": 4785.339436619718, "density": 8.736504578574152}, {"pressure": 7722.1142977598865, "depth": 4795.302816901409, "density": 8.736541047317395}, {"pressure": 7735.297507916889, "depth": 4805.2661971830985, "density": 8.736713858464757}, {"pressure": 7748.481031228914, "depth": 4815.229577464788, "density": 8.736889043928812}, {"pressure": 7761.664554540939, "depth": 4825.192957746478, "density": 8.736927001570887}, {"pressure": 7774.848397023608, "depth": 4835.156338028169, "density": 8.737104602520997}, {"pressure": 7788.032239506278, "depth": 4845.119718309859, "density": 8.737143904398698}, {"pressure": 7801.216407251341, "depth": 4855.083098591549, "density": 8.737184561666938}, {"pressure": 7814.400574996405, "depth": 4865.046478873239, "density": 8.737364623698987}, {"pressure": 7827.585073831936, "depth": 4875.009859154929, "density": 8.737547072372877}, {"pressure": 7840.769572667469, "depth": 4884.973239436619, "density": 8.73758916025989}, {"pressure": 7853.954408384713, "depth": 4894.93661971831, "density": 8.737632578085384}, {"pressure": 7867.139244101955, "depth": 4904.9, "density": 8.737817494615404}, {"pressure": 7867.271533972684, "depth": 4905.0, "density": 8.734453198993771}, {"pressure": 7867.403823843412, "depth": 4905.1, "density": 8.733950662259652}, {"pressure": 7880.149120020892, "depth": 4914.734807692308, "density": 8.734188943961742}, {"pressure": 7892.894416198373, "depth": 4924.369615384616, "density": 8.734348125213101}, {"pressure": 7905.640278601352, "depth": 4934.004423076924, "density": 8.734507823070205}, {"pressure": 7918.386141004333, "depth": 4943.639230769231, "density": 8.734747215312114}, {"pressure": 7931.132571629043, "depth": 4953.274038461539, "density": 8.734907438389628}, {"pressure": 7943.879002253754, "depth": 4962.908846153847, "density": 8.73514792524009}, {"pressure": 7956.626003336504, "depth": 4972.5436538461545, "density": 8.735308609528241}, {"pressure": 7969.373004419256, "depth": 4982.178461538462, "density": 8.735550192637792}, {"pressure": 7982.120578232016, "depth": 4991.81326923077, "density": 8.735792856780186}, {"pressure": 7994.868152044773, "depth": 5001.448076923077, "density": 8.735953997976665}, {"pressure": 8007.6163008314725, "depth": 5011.0828846153845, "density": 8.736115541428566}, {"pressure": 8020.364449618171, "depth": 5020.717692307692, "density": 8.73635932024772}, {"pressure": 8033.112099237146, "depth": 5030.3525, "density": 8.736600783685288}, {"pressure": 8045.85974885612, "depth": 5039.987307692308, "density": 8.737047783664499}, {"pressure": 8058.607803695913, "depth": 5049.622115384615, "density": 8.737199742327471}, {"pressure": 8071.355858535707, "depth": 5059.256923076923, "density": 8.737446104972692}, {"pressure": 8084.104540564308, "depth": 5068.891730769231, "density": 8.737693543244404}, {"pressure": 8096.85322259291, "depth": 5078.526538461539, "density": 8.737845864479834}, {"pressure": 8109.602533929289, "depth": 5088.161346153846, "density": 8.738094396308005}, {"pressure": 8122.351845265667, "depth": 5097.796153846154, "density": 8.738247035107163}, {"pressure": 8135.101787984366, "depth": 5107.430961538462, "density": 8.73839994457901}, {"pressure": 8147.851730703066, "depth": 5117.06576923077, "density": 8.738649587466554}, {"pressure": 8160.602306830421, "depth": 5126.700576923077, "density": 8.738802751241957}, {"pressure": 8173.352882957777, "depth": 5136.335384615385, "density": 8.739053489601131}, {"pressure": 8186.10409447045, "depth": 5145.970192307692, "density": 8.739305308251904}, {"pressure": 8198.855305983125, "depth": 5155.605, "density": 8.739458706654508}, {"pressure": 8211.607154880767, "depth": 5165.239807692307, "density": 8.739612429761909}, {"pressure": 8224.35900377841, "depth": 5174.874615384615, "density": 8.73986553954433}, {"pressure": 8237.111496041713, "depth": 5184.509423076923, "density": 8.740021463871322}, {"pressure": 8249.863988305013, "depth": 5194.1442307692305, "density": 8.740278063566919}, {"pressure": 8262.617129323686, "depth": 5203.779038461538, "density": 8.740535744184072}, {"pressure": 8275.37027034236, "depth": 5213.413846153846, "density": 8.740691730708592}, {"pressure": 8288.12406172921, "depth": 5223.048653846154, "density": 8.74095050816285}, {"pressure": 8300.877853116059, "depth": 5232.683461538461, "density": 8.741106284317746}, {"pressure": 8313.63229441449, "depth": 5242.318269230769, "density": 8.741261070674392}, {"pressure": 8326.38673571292, "depth": 5251.953076923077, "density": 8.741519747099098}, {"pressure": 8339.141826916757, "depth": 5261.587884615385, "density": 8.741779507371442}, {"pressure": 8351.89691812059, "depth": 5271.222692307692, "density": 8.741934227283796}, {"pressure": 8364.652660573698, "depth": 5280.8575, "density": 8.7420887783}, {"pressure": 8377.408403026806, "depth": 5290.492307692308, "density": 8.742349653711507}, {"pressure": 8390.164797947195, "depth": 5300.1271153846155, "density": 8.742611615497589}, {"pressure": 8402.921192867585, "depth": 5309.761923076923, "density": 8.742765946079013}, {"pressure": 8415.678241330086, "depth": 5319.396730769231, "density": 8.742919933981835}, {"pressure": 8428.435289792586, "depth": 5329.031538461538, "density": 8.743183013170842}, {"pressure": 8441.192992707955, "depth": 5338.666346153846, "density": 8.743336567592399}, {"pressure": 8453.950695623322, "depth": 5348.301153846153, "density": 8.74360075060876}, {"pressure": 8466.70905371277, "depth": 5357.935961538461, "density": 8.743887853610259}, {"pressure": 8479.467411802218, "depth": 5367.570769230769, "density": 8.744174954266054}, {"pressure": 8492.226425565936, "depth": 5377.2055769230765, "density": 8.744462066779429}, {"pressure": 8504.985439329654, "depth": 5386.840384615384, "density": 8.74474917694698}, {"pressure": 8517.745109007341, "depth": 5396.475192307692, "density": 8.745036298977062}, {"pressure": 8530.504778685026, "depth": 5406.11, "density": 8.745321668388817}, {"pressure": 8530.637216610352, "depth": 5406.21, "density": 8.744367621393398}, {"pressure": 8530.76965453568, "depth": 5406.31, "density": 8.744370398495834}, {"pressure": 8542.22263092811, "depth": 5414.9575, "density": 8.744610558041924}, {"pressure": 8553.67560732054, "depth": 5423.605, "density": 8.744829587868887}, {"pressure": 8565.129338509207, "depth": 5432.2525, "density": 8.745033977686584}, {"pressure": 8576.583069697872, "depth": 5440.9, "density": 8.745234203765218}, {"pressure": 8576.715525831418, "depth": 5441.0, "density": 8.744861603163397}, {"pressure": 8576.847981964964, "depth": 5441.1, "density": 8.744865862311718}, {"pressure": 8588.578322894957, "depth": 5449.955714285715, "density": 8.745243036568462}, {"pressure": 8600.308663824948, "depth": 5458.811428571429, "density": 8.745620186083991}, {"pressure": 8612.039789663228, "depth": 5467.667142857143, "density": 8.745997327868201}, {"pressure": 8623.770915501507, "depth": 5476.522857142857, "density": 8.74637444490954}, {"pressure": 8635.502823198112, "depth": 5485.378571428571, "density": 8.746751554150155}, {"pressure": 8647.23473089472, "depth": 5494.234285714286, "density": 8.74712863864625}, {"pressure": 8658.967416386718, "depth": 5503.09, "density": 8.747505715250298}, {"pressure": 8670.70010187872, "depth": 5511.9457142857145, "density": 8.74788276710818}, {"pressure": 8682.43355969459, "depth": 5520.801428571429, "density": 8.748259810952197}, {"pressure": 8694.167017510461, "depth": 5529.657142857143, "density": 8.748636830048419}, {"pressure": 8705.901240102812, "depth": 5538.512857142858, "density": 8.749013840964016}, {"pressure": 8717.635462695163, "depth": 5547.368571428571, "density": 8.749390827130213}, {"pressure": 8729.37043918706, "depth": 5556.2242857142855, "density": 8.749575122087277}, {"pressure": 8741.105415678956, "depth": 5565.08, "density": 8.749926025605964}, {"pressure": 8741.224677417784, "depth": 5565.17, "density": 8.749926025605964}, {"pressure": 9440.890592193835, "depth": 5565.1900000000005, "density": 6.935003679361158}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978.0, "density": 5.970502097594757}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4wJoVX5gYp", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5204.903310133675, "depth": 2072.0, "density": 9.221596295712184}, {"pressure": 5225.914920195607, "depth": 2085.37, "density": 9.221596295712184}, {"pressure": 5246.920298925266, "depth": 2098.7400000000002, "density": 9.225071793293836}, {"pressure": 5267.919817388084, "depth": 2112.11, "density": 9.228715049714353}, {"pressure": 5268.152074795892, "depth": 2112.31, "density": 6.813735572853778}, {"pressure": 5288.155475254602, "depth": 2130.84, "density": 6.342499424557418}, {"pressure": 5308.163630345304, "depth": 2149.37, "density": 6.344349825939567}, {"pressure": 5328.17749913082, "depth": 2167.9, "density": 6.345818628053981}, {"pressure": 5328.393548625588, "depth": 2168.1, "density": 6.338244027985599}, {"pressure": 5349.903826546931, "depth": 2188.0091176470587, "density": 6.347922979362616}, {"pressure": 5371.420242784362, "depth": 2207.9182352941175, "density": 6.3500538519946215}, {"pressure": 5392.942653681848, "depth": 2227.8273529411763, "density": 6.351503555975771}, {"pressure": 5414.471040954587, "depth": 2247.736470588235, "density": 6.353267250984126}, {"pressure": 5436.00539640149, "depth": 2267.645588235294, "density": 6.355028525759964}, {"pressure": 5457.545748087023, "depth": 2287.554705882353, "density": 6.356798082672593}, {"pressure": 5479.092136419495, "depth": 2307.463823529412, "density": 6.358579564527979}, {"pressure": 5500.644570281912, "depth": 2327.3729411764707, "density": 6.360683589575374}, {"pressure": 5522.203059028034, "depth": 2347.2820588235295, "density": 6.362150531586102}, {"pressure": 5543.767612744539, "depth": 2367.1911764705883, "density": 6.363940372006047}, {"pressure": 5565.338241954746, "depth": 2387.100294117647, "density": 6.365733317974395}, {"pressure": 5586.914958411493, "depth": 2407.009411764706, "density": 6.367529732336607}, {"pressure": 5608.497785675964, "depth": 2426.9185294117647, "density": 6.3696534727407785}, {"pressure": 5630.086738615918, "depth": 2446.8276470588235, "density": 6.37114085503894}, {"pressure": 5651.681828172065, "depth": 2466.7367647058823, "density": 6.372951838936635}, {"pressure": 5673.2830653592155, "depth": 2486.645882352941, "density": 6.374766073427462}, {"pressure": 5694.890461256057, "depth": 2506.5550000000003, "density": 6.3765835773629025}, {"pressure": 5716.504027008922, "depth": 2526.4641176470586, "density": 6.378404370705091}, {"pressure": 5738.123773888365, "depth": 2546.373235294118, "density": 6.380549411017668}, {"pressure": 5759.749713221329, "depth": 2566.2823529411767, "density": 6.3820559522299805}, {"pressure": 5781.381856347307, "depth": 2586.1914705882355, "density": 6.383886760756481}, {"pressure": 5803.020214635637, "depth": 2606.1005882352943, "density": 6.3857209245020545}, {"pressure": 5824.664799494427, "depth": 2626.009705882353, "density": 6.3875584549071664}, {"pressure": 5846.3156223729275, "depth": 2645.918823529412, "density": 6.389399364113959}, {"pressure": 5867.97269476432, "depth": 2665.8279411764706, "density": 6.391565140046089}, {"pressure": 5889.636028207555, "depth": 2685.7370588235294, "density": 6.393091371332687}, {"pressure": 5911.305638066002, "depth": 2705.646176470588, "density": 6.394943611480333}, {"pressure": 5932.981519605128, "depth": 2725.5552941176475, "density": 6.396794454414373}, {"pressure": 5954.663112822604, "depth": 2745.464411764706, "density": 6.398480034413925}, {"pressure": 5976.350081790118, "depth": 2765.373529411765, "density": 6.400066478221089}, {"pressure": 5998.04243763913, "depth": 2785.282647058824, "density": 6.4019782057490575}, {"pressure": 6019.740206063551, "depth": 2805.1917647058826, "density": 6.403253518431159}, {"pressure": 6041.443435706104, "depth": 2825.1008823529414, "density": 6.4048651848260185}, {"pressure": 6063.152140467356, "depth": 2845.01, "density": 6.406480953433795}, {"pressure": 6063.450894223064, "depth": 2845.21, "density": 8.764538931221663}, {"pressure": 6092.946963746648, "depth": 2863.9433333333336, "density": 9.251362501880491}, {"pressure": 6122.446945751108, "depth": 2882.6766666666667, "density": 9.252095061629518}, {"pressure": 6151.950804282797, "depth": 2901.4100000000003, "density": 9.253310858928563}, {"pressure": 6152.185291300629, "depth": 2901.61, "density": 6.913714213179486}, {"pressure": 6169.912452388689, "depth": 2917.8433333333332, "density": 6.415762704668609}, {"pressure": 6187.643156752726, "depth": 2934.076666666667, "density": 6.41744092193882}, {"pressure": 6205.377459394244, "depth": 2950.31, "density": 6.41874328041718}, {"pressure": 6205.676428953543, "depth": 2950.5099999999998, "density": 8.814944684566093}, {"pressure": 6231.665221595041, "depth": 2967.0066666666667, "density": 9.25620019089025}, {"pressure": 6257.657065854402, "depth": 2983.503333333333, "density": 9.256725159779979}, {"pressure": 6283.6519416739575, "depth": 3000.0, "density": 9.258366783031459}, {"pressure": 6293.072764357168, "depth": 3005.21, "density": 10.625862170601257}, {"pressure": 6293.343959037523, "depth": 3005.41, "density": 7.956038337573384}, {"pressure": 6314.2270333920005, "depth": 3022.0325, "density": 7.381286172738737}, {"pressure": 6335.112992666165, "depth": 3038.6549999999997, "density": 7.382305870194632}, {"pressure": 6356.001847954613, "depth": 3055.2775, "density": 7.383774294803495}, {"pressure": 6376.893610362978, "depth": 3071.9, "density": 7.384357033423913}, {"pressure": 6377.144995380677, "depth": 3072.1, "density": 7.374882264232811}, {"pressure": 6402.1539436441135, "depth": 3091.995238095238, "density": 7.3856202456658275}, {"pressure": 6427.1671110481975, "depth": 3111.890476190476, "density": 7.3868662385103185}, {"pressure": 6452.184516574215, "depth": 3131.785714285714, "density": 7.388117836891313}, {"pressure": 6477.206179225932, "depth": 3151.6809523809525, "density": 7.38937504744731}, {"pressure": 6502.232118027906, "depth": 3171.5761904761903, "density": 7.390637876318842}, {"pressure": 6527.2623310510035, "depth": 3191.4714285714285, "density": 7.391900135480146}, {"pressure": 6552.29636994852, "depth": 3211.366666666667, "density": 7.393029989293759}, {"pressure": 6577.333972606711, "depth": 3231.2619047619046, "density": 7.394082435910448}, {"pressure": 6602.375154292892, "depth": 3251.157142857143, "density": 7.395139391257394}, {"pressure": 6627.419930314664, "depth": 3271.052380952381, "density": 7.396573152974498}, {"pressure": 6652.468316014788, "depth": 3290.947619047619, "density": 7.397266874215108}, {"pressure": 6677.5203267700335, "depth": 3310.842857142857, "density": 7.39833742225331}, {"pressure": 6702.575977991001, "depth": 3330.7380952380954, "density": 7.399412521336158}, {"pressure": 6727.635287612156, "depth": 3350.633333333333, "density": 7.40049291680923}, {"pressure": 6752.698330221791, "depth": 3370.5285714285715, "density": 7.4015953396301954}, {"pressure": 6777.765158521497, "depth": 3390.4238095238097, "density": 7.402713326237876}, {"pressure": 6802.835788791863, "depth": 3410.3190476190475, "density": 7.403836120814401}, {"pressure": 6827.910237339442, "depth": 3430.214285714286, "density": 7.404963731028021}, {"pressure": 6852.988520503252, "depth": 3450.109523809524, "density": 7.406096166465854}, {"pressure": 6878.070654647511, "depth": 3470.004761904762, "density": 7.40723343456939}, {"pressure": 6903.1566561596, "depth": 3489.9, "density": 7.408375542179914}, {"pressure": 6903.408856795826, "depth": 3490.1, "density": 7.398810064969101}, {"pressure": 6928.538285756517, "depth": 3510.0267605633803, "density": 7.409639252422601}, {"pressure": 6953.671135559508, "depth": 3529.9535211267603, "density": 7.410275524324966}, {"pressure": 6978.807104296397, "depth": 3549.8802816901407, "density": 7.411567564541979}, {"pressure": 7003.942885545295, "depth": 3569.807042253521, "density": 7.412629820053773}, {"pressure": 7029.065662055096, "depth": 3589.7338028169015, "density": 7.415503516128659}, {"pressure": 7054.155952557671, "depth": 3609.6605633802815, "density": 7.419725341203044}, {"pressure": 7079.203450861506, "depth": 3629.587323943662, "density": 7.425408829219934}, {"pressure": 7104.197900946614, "depth": 3649.5140845070423, "density": 7.431460242695827}, {"pressure": 7129.1289824055775, "depth": 3669.4408450704223, "density": 7.439006679837478}, {"pressure": 7153.986026465995, "depth": 3689.3676056338027, "density": 7.446832796532614}, {"pressure": 7178.758822661325, "depth": 3709.294366197183, "density": 7.455855573043515}, {"pressure": 7203.437241996379, "depth": 3729.221126760563, "density": 7.466516660985715}, {"pressure": 7228.011200242978, "depth": 3749.1478873239435, "density": 7.477711991291931}, {"pressure": 7252.470663389621, "depth": 3769.074647887324, "density": 7.490263782182502}, {"pressure": 7276.805653079129, "depth": 3789.001408450704, "density": 7.503054046464378}, {"pressure": 7301.006252028492, "depth": 3808.9281690140842, "density": 7.5185107632898065}, {"pressure": 7325.062609430744, "depth": 3828.8549295774646, "density": 7.534739306142837}, {"pressure": 7348.964946335124, "depth": 3848.781690140845, "density": 7.551398425197208}, {"pressure": 7372.703561004983, "depth": 3868.708450704225, "density": 7.570191190495792}, {"pressure": 7396.2688342465335, "depth": 3888.6352112676054, "density": 7.590408663673067}, {"pressure": 7419.651182573266, "depth": 3908.561971830986, "density": 7.611717186655055}, {"pressure": 7442.840596034585, "depth": 3928.488732394366, "density": 7.634472255804324}, {"pressure": 7465.923498177873, "depth": 3948.415492957746, "density": 7.648329570562856}, {"pressure": 7489.007336852222, "depth": 3968.3422535211266, "density": 7.649071838135906}, {"pressure": 7512.0937581797625, "depth": 3988.269014084507, "density": 7.649927627334619}, {"pressure": 7535.182776022698, "depth": 4008.195774647887, "density": 7.650355957287016}, {"pressure": 7558.274404280535, "depth": 4028.1225352112674, "density": 7.651652998251294}, {"pressure": 7581.36865689085, "depth": 4048.049295774648, "density": 7.65252260494494}, {"pressure": 7604.465547828907, "depth": 4067.976056338028, "density": 7.652964642531968}, {"pressure": 7627.565091105071, "depth": 4087.902816901408, "density": 7.6542757225145035}, {"pressure": 7650.667300770744, "depth": 4107.829577464789, "density": 7.655159258619164}, {"pressure": 7673.772190921059, "depth": 4127.756338028169, "density": 7.6560474652937485}, {"pressure": 7696.8797756876675, "depth": 4147.683098591549, "density": 7.656507954574211}, {"pressure": 7719.990013896124, "depth": 4167.609859154929, "density": 7.65781960040066}, {"pressure": 7743.102635144979, "depth": 4187.536619718309, "density": 7.658609245808871}, {"pressure": 7766.21762652738, "depth": 4207.46338028169, "density": 7.65939461439529}, {"pressure": 7789.335000523068, "depth": 4227.39014084507, "density": 7.659751535029366}, {"pressure": 7812.454769657812, "depth": 4247.316901408451, "density": 7.660977772699836}, {"pressure": 7835.576946502805, "depth": 4267.243661971831, "density": 7.661775592721378}, {"pressure": 7858.701543676247, "depth": 4287.170422535211, "density": 7.662577593914742}, {"pressure": 7881.8285738433715, "depth": 4307.097183098591, "density": 7.66295102793035}, {"pressure": 7904.95804971703, "depth": 4327.023943661971, "density": 7.664194202355082}, {"pressure": 7928.089984060488, "depth": 4346.950704225352, "density": 7.665008842085196}, {"pressure": 7951.224389683998, "depth": 4366.877464788732, "density": 7.665827726627233}, {"pressure": 7974.361279442612, "depth": 4386.804225352113, "density": 7.666217922390149}, {"pressure": 7997.500666235808, "depth": 4406.730985915493, "density": 7.667478289399997}, {"pressure": 8020.642563007209, "depth": 4426.657746478873, "density": 7.668309996979398}, {"pressure": 8043.786982744879, "depth": 4446.584507042253, "density": 7.66871291895247}, {"pressure": 8066.933938481172, "depth": 4466.511267605633, "density": 7.669986338008703}, {"pressure": 8090.083443291705, "depth": 4486.438028169014, "density": 7.670831000469956}, {"pressure": 8113.235510295702, "depth": 4506.364788732394, "density": 7.671680010123247}, {"pressure": 8136.3901526555155, "depth": 4526.2915492957745, "density": 7.672100100630641}, {"pressure": 8159.547383575625, "depth": 4546.218309859155, "density": 7.673391127839453}, {"pressure": 8182.707216302286, "depth": 4566.145070422535, "density": 7.6742532637041085}, {"pressure": 8205.869664123782, "depth": 4586.071830985915, "density": 7.675119802781074}, {"pressure": 8229.034742918891, "depth": 4605.998591549295, "density": 7.675558127537132}, {"pressure": 8252.202514467268, "depth": 4625.925352112676, "density": 7.6768838754697}, {"pressure": 8275.373017739861, "depth": 4645.852112676056, "density": 7.67778906091474}, {"pressure": 8298.546265648194, "depth": 4665.7788732394365, "density": 7.678698524727534}, {"pressure": 8321.7221195783, "depth": 4685.705633802816, "density": 7.679128379800577}, {"pressure": 8344.900446164977, "depth": 4705.632394366197, "density": 7.680381398015525}, {"pressure": 8368.081257779671, "depth": 4725.559154929577, "density": 7.681204838089925}, {"pressure": 8391.26456683329, "depth": 4745.485915492957, "density": 7.682032390648036}, {"pressure": 8414.450385774922, "depth": 4765.412676056338, "density": 7.6824302043218085}, {"pressure": 8437.638727096139, "depth": 4785.339436619718, "density": 7.683699885249271}, {"pressure": 8460.829603328802, "depth": 4805.2661971830985, "density": 7.684539854720133}, {"pressure": 8484.02302704097, "depth": 4825.192957746478, "density": 7.68494998242465}, {"pressure": 8507.21901083625, "depth": 4845.119718309859, "density": 7.686232299114651}, {"pressure": 8530.417567353968, "depth": 4865.046478873239, "density": 7.687084797653915}, {"pressure": 8553.618709267768, "depth": 4884.973239436619, "density": 7.687941495738034}, {"pressure": 8576.822449284302, "depth": 4904.9, "density": 7.68836820493592}, {"pressure": 8577.055352742753, "depth": 4905.1, "density": 7.72055227184878}, {"pressure": 8599.496506120022, "depth": 4924.369615384616, "density": 7.689279568196107}, {"pressure": 8621.940341332955, "depth": 4943.639230769231, "density": 7.690647592615651}, {"pressure": 8644.386863677673, "depth": 4962.908846153847, "density": 7.6915683703443065}, {"pressure": 8666.836078467788, "depth": 4982.178461538462, "density": 7.692041746059344}, {"pressure": 8689.287991033978, "depth": 5001.448076923077, "density": 7.693415393964806}, {"pressure": 8711.742606723765, "depth": 5020.717692307692, "density": 7.694341651478027}, {"pressure": 8734.199931476698, "depth": 5039.987307692308, "density": 7.6952699442479275}, {"pressure": 8756.659971794186, "depth": 5059.256923076923, "density": 7.695751025393111}, {"pressure": 8779.12273301262, "depth": 5078.526538461539, "density": 7.697132813936982}, {"pressure": 8801.588220484256, "depth": 5097.796153846154, "density": 7.698066997084278}, {"pressure": 8824.05643957697, "depth": 5117.06576923077, "density": 7.6985534165260985}, {"pressure": 8846.52739567399, "depth": 5136.335384615385, "density": 7.699940886740077}, {"pressure": 8869.001094173609, "depth": 5155.605, "density": 7.7008806036713935}, {"pressure": 8891.47753783307, "depth": 5174.874615384615, "density": 7.70137149775319}, {"pressure": 8913.956605895472, "depth": 5194.1442307692305, "density": 7.702720548345948}, {"pressure": 8936.438200964894, "depth": 5213.413846153846, "density": 7.703586457416031}, {"pressure": 8958.922327665961, "depth": 5232.683461538461, "density": 7.704004029773539}, {"pressure": 8981.408990641426, "depth": 5251.953076923077, "density": 7.705323035813839}, {"pressure": 9003.898194551752, "depth": 5271.222692307692, "density": 7.7061937174236395}, {"pressure": 9026.389944074597, "depth": 5290.492307692308, "density": 7.706615927957583}, {"pressure": 9048.884243904302, "depth": 5309.761923076923, "density": 7.707939894925271}, {"pressure": 9071.381098751293, "depth": 5329.031538461538, "density": 7.708815402046427}, {"pressure": 9093.880513341439, "depth": 5348.301153846153, "density": 7.709692528541496}, {"pressure": 9116.38249241531, "depth": 5367.570769230769, "density": 7.71012100081964}, {"pressure": 9138.887040727353, "depth": 5386.840384615384, "density": 7.71145165952719}, {"pressure": 9161.394163044937, "depth": 5406.11, "density": 7.7123336731990175}, {"pressure": 9161.725901193136, "depth": 5406.31, "density": 10.935058487335965}, {"pressure": 9192.111275280056, "depth": 5423.605, "density": 11.600178535857735}, {"pressure": 9222.499196804705, "depth": 5440.9, "density": 11.601905957425826}, {"pressure": 9222.850618697723, "depth": 5441.1, "density": 11.583892219625412}, {"pressure": 9253.972884752206, "depth": 5458.811428571429, "density": 11.602184627235912}, {"pressure": 9285.097811575986, "depth": 5476.522857142857, "density": 11.603913816613174}, {"pressure": 9316.225393740755, "depth": 5494.234285714286, "density": 11.604166439644077}, {"pressure": 9347.35562590816, "depth": 5511.9457142857145, "density": 11.605154343925}, {"pressure": 9378.48850282546, "depth": 5529.657142857143, "density": 11.606140290015778}, {"pressure": 9409.624019319492, "depth": 5547.368571428571, "density": 11.607861829780953}, {"pressure": 9440.762170287782, "depth": 5565.08, "density": 11.608106422983827}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978.0, "density": 5.970502097594757}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 1800.170000000001, "initial_volume": 87.9675888778126, "volume_variation": -0.2773143387337029, "leakage_bbl": 0.0, "final_volume": 87.6902745390789, "leakage_mass": 0.0}, "operation_id": "Daq40oro2q"}, "_id": "Daq40oro2q-4", "type": "THERMAL", "id": 6, "stage": "PRODUCTION", "geopressures": {}}], "annular_pressure_test": 6000, "_id": "mGy1L34nG0", "type": "PRODUCTION/INJECTION"}], "well_strings": [{"elements": [], "od": 36, "type": "DRILLING", "_id": "v2Y6WzL67n", "hole_size": 42, "fluid_minimum_weight": 8.6, "toc_md": 2072, "interval": "CONDUCTOR", "shoe_md": 2168, "final_md": 2170, "load_scenarios": [], "annular_fluids": [{"top": 2072, "base": 2072, "fluid": "Brine_860", "extension": 0}], "pressure_relief": {}, "cementing": {"displacement_fluid_type": "OTHER", "first_slurry": {"thermomechanical_property": {"e": 1500000.0, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33, "thermomechanical_properties": {"e": 1500000.0, "reference": "__DEFAULT__", "density": 15.7743, "thermal_conductivity": 0.983057, "specific_heat": 837.9, "nu": 0.28, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "id": 3}}, "second_slurry": {"thermomechanical_properties": null}, "wh_pressure": 0, "_id": "8ODANyAYzW", "displacement_fluid": 8.55}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 1, "string_sections": [{"top_md": 2072, "extension": 96, "sequence": 1, "base_md": 2168, "pipe": {"kwall_burst": 0.875, "weight": 554.0, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "B", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1.0, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 60000.0, "fymn": 35000.0, "an": 5.0, "version": 7, "hn": 0.0, "kydes": 0.85, "id": 12, "n": 0.141, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000.0, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": null, "od": 36.0, "instance": {"is_valid": true, "errors": [], "rel": {"od": 36.0, "id": 58, "weight": 554.0}}, "kwall_triaxial": 1.0, "version": 0, "hc": null, "wt": 1.5, "id": 58}, "connection": null, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": false}], "expected_wear": []}, {"elements": [], "od": 18, "type": "CASING", "_id": "KmQgWNwgEr", "hole_size": 20, "fluid_minimum_weight": 8.6, "toc_md": 2072, "interval": "SURFACE", "shoe_md": 3490, "final_md": 3500, "load_scenarios": [], "annular_fluids": [{"top": 2072, "base": 2072, "fluid": "Brine_860", "extension": 0}], "pressure_relief": {"safety_margin": 0, "can_calc_safety_margin": true, "safety_margin_unit": "LB_GAL", "relief_point": "PREVIOUS_SHOE", "depth": 2168, "can_calc_pressure_without_safety_margin": true, "active": false, "representation": {}, "_id": "154wpWDLa7", "pressure_without_safety_margin": {"msg": "PRESSURE_RELIEF_ERROR", "status": "fail"}}, "cementing": {"wh_pressure": 0, "first_slurry": {"thermomechanical_property": {"e": 1500000.0, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33, "thermomechanical_properties": {"e": 1500000.0, "reference": "__DEFAULT__", "density": 15.7743, "thermal_conductivity": 0.983057, "specific_heat": 837.9, "nu": 0.28, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "id": 3}}, "displacement_fluid_type": "OTHER", "second_slurry": {"thermomechanical_properties": null}, "displacement_fluid": 8.55}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 2, "string_sections": [{"top_md": 2072, "extension": 1418, "sequence": 1, "base_md": 3490, "pipe": {"kwall_burst": 0.875, "weight": 162.0, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "X-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1.0, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 90000.0, "fymn": 80000.0, "an": 5.0, "version": 2, "hn": 0.0, "kydes": 0.855, "id": 6, "n": 0.104, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000.0, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 18.0, "instance": {"is_valid": true, "errors": [], "rel": {"od": 18.0, "id": 9, "weight": 162.0}}, "kwall_triaxial": 1.0, "version": 1, "hc": null, "wt": 0.875, "id": 9}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 162.0, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "X-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1.0, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 90000.0, "fymn": 80000.0, "an": 5.0, "version": 2, "hn": 0.0, "kydes": 0.855, "id": 6, "n": 0.104, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 18.0, "instance": {"is_valid": true, "errors": [], "rel": {"od": 18.0, "id": 9, "weight": 162.0}}, "kwall_triaxial": 1.0, "version": 1, "hc": null, "wt": 0.875, "id": 9}, "name": "WEDGE 511", "kwall": 1.0, "tension_ratio": 65.6, "custom_envelope": {}, "internal_pressure_ratio": 100.0, "external_pressure_ratio": 100.0, "version": 0, "has_custom_envelope": false, "compression_ratio": 73.8, "id": 26}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": false}], "expected_wear": []}, {"elements": [], "od": 11.875, "type": "CASING", "_id": "AA1RJzv4Wj", "hole_size": 14.75, "fluid_minimum_weight": 8.6, "toc_md": 4905, "interval": "PRODUCTION", "shoe_md": 5607, "final_md": 5610, "load_scenarios": [], "annular_fluids": [{"solid_ratio": null, "is_custom": false, "weight": 8.6, "extension": 2833, "top": 2072, "corrected_solid_ratio": 0.29384715461743743, "fluid": "DFLT_FPBA_BARITE_8.60_35000", "salinity": 35000, "is_salinity_custom": true, "oil_water_ratio": null, "solid_density": 34, "fluid_type": "FPBA_BARITE", "base": 4905, "is_oil_water_ratio_custom": null, "is_solid_ratio_custom": null, "is_weight_custom": false}], "pressure_relief": {"safety_margin": 0, "can_calc_safety_margin": true, "safety_margin_unit": "LB_GAL", "relief_point": "PREVIOUS_SHOE", "depth": 3490, "can_calc_pressure_without_safety_margin": true, "active": false, "representation": {"index": 3, "_id": "qmBRGDB9Vv", "type": "ball"}, "_id": "nkq6LQqep6", "pressure_without_safety_margin": {"msg": "PRESSURE_RELIEF_ERROR", "status": "fail", "_id": "Prepwk6mOE"}}, "cementing": {"displacement_fluid_type": "CURRENT_PHASE_FLUID", "first_slurry": {"thermomechanical_property": {"e": 1500000.0, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33, "thermomechanical_properties": {"e": 1500000.0, "reference": "__DEFAULT__", "density": 15.7743, "thermal_conductivity": 0.983057, "specific_heat": 837.9, "nu": 0.28, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "id": 3}}, "second_slurry": {"thermomechanical_properties": null}, "wh_pressure": 0, "_id": "LeAMkvMG6e", "displacement_fluid": 8.6}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 3, "string_sections": [{"top_md": 2072, "extension": 1000, "sequence": 1, "base_md": 3072, "pipe": {"kwall_burst": 0.875, "weight": 71.8, "grade": {"kedes": 0.825, "ka": 1, "name": "N-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0405, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "N80HRSAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.21, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0547, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.1581, "kt_mean": 0.9991, "id": 6}, "fumn": 100000, "fymn": 80000, "an": 5, "version": 1, "hn": 0, "kydes": 0.87, "n": 0.104, "special_alloy": false, "id": 17, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 11.875, "kwall_triaxial": 1, "wt": 0.582, "hc": 7810, "id": 98}, "connection": {"name": "VAM BOLT-NA", "kwall": 1, "tension_ratio": 60, "compression_ratio": 60, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "document": null, "id": 64}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}, {"top_md": 3072, "extension": 2369, "sequence": 2, "base_md": 5441, "pipe": {"kwall_burst": 0.875, "weight": 85.3, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "C-110 HC", "thermal_derating": {"reference": "__DEFAULT__", "celsius250": 0.8785, "celsius150": 0.9325, "version": 9, "celsius200": 0.9055, "celsius25": 1.0, "id": 12, "celsius100": 0.9595}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.036, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "P110HRSAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0509, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.113, "kt_mean": 0.9991, "id": 1}, "fumn": 120000.0, "fymn": 110000.0, "an": 5.0, "version": 2, "hn": 0.0, "kydes": 0.855, "id": 4, "n": 0.08, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000.0, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 17, "weight": 85.3}}, "kwall_triaxial": 1.0, "version": 0, "hc": 14840.0, "wt": 0.797, "id": 17}, "connection": {"name": "VAM 21 HW-NA SC70", "kwall": 1, "tension_ratio": 70, "compression_ratio": 70, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 113}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}, {"top_md": 5441, "extension": 166, "sequence": 3, "base_md": 5607, "pipe": {"kwall_burst": 0.875, "weight": 109.0, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1.0, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000.0, "fymn": 125000.0, "an": 5.0, "version": 1, "hn": 0.0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31, "thermomechanical_properties": {"e": 30000000.0, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 5, "weight": 109.0}}, "kwall_triaxial": 1.0, "version": 0, "hc": null, "wt": 1.033, "id": 5}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 109.0, "grade": {"kedes": 0.825, "ka": 1.0, "e": 30000000.0, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1.0, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000.0, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000.0, "fymn": 125000.0, "an": 5.0, "version": 1, "hn": 0.0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 5, "weight": 109.0}}, "kwall_triaxial": 1.0, "version": 0, "hc": null, "wt": 1.033, "id": 5}, "name": "VAM MUST", "kwall": 1.0, "tension_ratio": 56.0, "custom_envelope": {}, "internal_pressure_ratio": 100.0, "external_pressure_ratio": 100.0, "version": 0, "has_custom_envelope": false, "compression_ratio": 45.0, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}], "expected_wear": []}, {"shoe_md": 5978, "elements": [], "sequence": 4, "hole_size": 9.5, "fluid_minimum_weight": 8.6, "toc_md": 5978, "fluid_weight": 8.6, "string_sections": [], "final_md": 5978, "interval": "OPEN", "load_scenarios": [], "annular_fluids": [{"top": 5978, "base": 5978, "fluid": "Brine_860", "extension": 0}], "pressure_relief": {}, "cementing": {"wh_pressure": 0, "first_slurry": {"thermomechanical_property": {"e": 1500000.0, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33, "thermomechanical_properties": {"e": 1500000.0, "reference": "__DEFAULT__", "density": 15.7743, "thermal_conductivity": 0.983057, "specific_heat": 837.9, "nu": 0.28, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "id": 3}}, "displacement_fluid_type": "CURRENT_PHASE_FLUID", "second_slurry": {"thermomechanical_properties": null}, "displacement_fluid": 8.6}, "_id": "9OgJxMzrzB", "expected_wear": []}], "is_output_outdated": true, "config": {"sizing_level": "A", "default_pressure_test": {"od": 5.5, "fit_test": 2, "circular_kick": 2, "leakoff_margin": 2, "gas_lift_margin": 300}, "temperature": {"other": null, "temperature_source": "SURFACE"}, "enable_critical_operations_only": true, "wear_limit": 20, "enable_minimum_pore_gradient": true, "default_safety_properties": {"collapse_addendum": true, "maximum_exhibition_value": 20, "minimum_fail_probability": 1e-08}, "safety_factors": {"kt_min_fs": 1, "collapse_min_fs": 1, "ks_combined_min_fs": 1, "internal_pressure_min_fs": 1.1, "tension_min_fs": 1.3, "triaxial_connection_min_fs": 1.25, "ks_capped_end_min_fs": 1, "compression_connection_min_fs": 1.3, "triaxial_min_fs": 1.25, "compression_min_fs": 1.3}, "default_gas_properties": {"property": "N-2752"}, "minimum_pore_gradient": 8.55, "corrosive_wear_config": {"enable": true, "corrosion_rate": 0.03, "production_time": 30, "mgl_distance_bellow": null, "mgl_distance": 0, "special_alloy": false}, "default_fluid_properties": {"sea water": {"solid_ratio": null, "oil_water_ratio": null, "type": "FCBA", "salinity": null}, "water based": {"solid_ratio": null, "oil_water_ratio": null, "type": "FPBA_BARITE", "salinity": 300000}, "inhibited water based": {"solid_ratio": null, "oil_water_ratio": null, "type": "FCBA", "salinity": null}, "high performance water based": {"solid_ratio": null, "oil_water_ratio": null, "type": "FPBA_BARITE", "salinity": 300000}, "synthetic based": {"solid_ratio": null, "oil_water_ratio": null, "type": "FPBNA_OLEO_CACL2", "salinity": 558300}}, "cementing": {"default": {"second_slurry": {"available": false, "cement_slurry": 15.8, "depth": null, "mixture_water": 8.33}, "first_slurry": {"cement_slurry": 15.8, "cement_setting_pressure": 0, "other_fluid": null, "displacement_fluid": "CURRENT_PHASE_FLUID", "mixture_water": 8.33}}, "surface": {"second_slurry": {"available": false, "cement_slurry": 15.8, "depth": null, "mixture_water": 8.33}, "first_slurry": {"cement_slurry": 15.8, "cement_setting_pressure": 0, "other_fluid": 8.55, "displacement_fluid": "OTHER", "mixture_water": 8.33}}}, "relief_config": {"thermomechanical_property": 3, "enable": true, "no_saline_relief_value": 0, "saline_relief_type": "MAX_OVERBURDEN", "relief_point": "PREVIOUS_SHOE", "no_saline_relief_type": "MAX_FRACTURE", "saline_relief_unit": "PERCENTAGE", "no_saline_relief_unit": "LB_GAL", "saline_relief_value": 20}, "completion_config": {"enable_friction": true, "friction_coefficient": 0.3}, "enable_thermal_derating": true, "cut_ellipse_by_efficiency": true}, "lithologies": [{"thermomechanical_property": {"e": 30000000.0, "reference": "Folhelho", "thermal_conductivity": 50.0, "density": 1.0, "specific_heat": 5.0, "id": 2, "version": 11, "thermal_expansion_coefficient": null, "type": "ROCK", "nu": 0.28}, "permeable": true, "display_name": "Folhelho", "name": "FLH", "salt": false, "image": "http://localhost:8000/media/litologia_FLH.png", "base_elevation": -5710, "row_id": 1, "_id": "N3Dygo00KA", "top_elevation": -2047, "id": 50, "thermomechanical_properties": {"e": 30000000.0, "reference": "Folhelho", "density": 1.0, "thermal_conductivity": 50.0, "specific_heat": 5.0, "nu": 0.28, "version": 11, "thermal_expansion_coefficient": null, "type": "ROCK", "id": 2}}], "is_thermal_output_outdated": true, "version": "3.0.0", "final_md": 5978.79, "geopressures": [{"name": "Press\u00e3o de Poros (default)", "default": true, "geopressure_table": [], "active": true, "_id": "YeapAEOx3A", "type": "PORE_PRESSURE", "id": 1}, {"name": "Press\u00e3o de Fratura (default)", "default": true, "geopressure_table": [], "active": true, "_id": "Zb6jvr9Z40", "type": "FRACTURE_PRESSURE", "id": 2}, {"name": "Press\u00e3o de Sobrecarga (default)", "default": true, "geopressure_table": [], "active": true, "_id": "JPDBz1G3Jk", "type": "OVERBURDEN", "id": 3}], "trajectory": {"_id": "XYw9POgbDx", "data": [{"displacement": 0.0, "dls": 0.0, "depth": 2072.0, "vertical_depth": 2072.0, "azimuth": 250.41, "ew": 0.0, "ns": 0.0, "inclination": 0.0}, {"displacement": 0.732870828967924, "dls": 3.2142857142857624, "depth": 2100.0, "vertical_depth": 2099.987207822019, "azimuth": 250.41, "ew": -0.6904493234842621, "ns": -0.24572216760450566, "inclination": 3.0}, {"displacement": 76.09664781880704, "dls": 0.0, "depth": 3540.0, "vertical_depth": 3538.0137378686054, "azimuth": 250.41, "ew": -71.69186837454963, "ns": -25.514227760718168, "inclination": 3.0}, {"displacement": 77.75299298522548, "dls": 0.33000000000000745, "depth": 3570.0, "vertical_depth": 3567.967936785112, "azimuth": 250.41, "ew": -73.25233763380581, "ns": -26.069579002036846, "inclination": 3.33}, {"displacement": 80.0179032358046, "dls": 1.9999999999999472, "depth": 3600.0, "vertical_depth": 3597.8807902103954, "azimuth": 250.41, "ew": -75.38614578723876, "ns": -26.828974292726365, "inclination": 5.33}, {"displacement": 83.32537729373297, "dls": 1.9999999999999472, "depth": 3630.0, "vertical_depth": 3627.6963773057687, "azimuth": 250.41, "ew": -78.50216996977358, "ns": -27.9379278254442, "inclination": 7.33}, {"displacement": 87.67138551134829, "dls": 1.9999999999999472, "depth": 3660.0, "vertical_depth": 3657.3783723710953, "azimuth": 250.41, "ew": -82.59661378593054, "ns": -29.395088511131927, "inclination": 9.33}, {"displacement": 93.05063294708867, "dls": 1.9999999999999472, "depth": 3690.0, "vertical_depth": 3686.890612467549, "azimuth": 250.41, "ew": -87.66448878662041, "ns": -31.198681023952435, "inclination": 11.33}, {"displacement": 99.45656581656323, "dls": 1.9999999999999472, "depth": 3720.0, "vertical_depth": 3716.1971414765844, "azimuth": 250.41, "ew": -93.69962054680114, "ns": -33.34650796425098, "inclination": 13.33}, {"displacement": 106.88137947732878, "dls": 1.9999999999999472, "depth": 3750.0, "vertical_depth": 3745.262253906929, "azimuth": 250.41, "ew": -100.69465618806373, "ns": -35.83595253574819, "inclination": 15.33}, {"displacement": 115.31602793764459, "dls": 1.9999999999999472, "depth": 3780.0, "vertical_depth": 3774.050538396223, "azimuth": 250.41, "ew": -108.64107333698195, "ns": -38.66398173370323, "inclination": 17.33}, {"displacement": 124.75023487761972, "dls": 1.9999999999999472, "depth": 3810.0, "vertical_depth": 3802.5269208543127, "azimuth": 250.41, "ew": -117.52919050831154, "ns": -41.8271500401629, "inclination": 19.33}, {"displacement": 135.172506169326, "dls": 1.9999999999999472, "depth": 3840.0, "vertical_depth": 3830.6567071956224, "azimuth": 250.41, "ew": -127.34817890038876, "ns": -45.321603621794495, "inclination": 21.33}, {"displacement": 146.5701438806223, "dls": 1.9999999999999472, "depth": 3870.0, "vertical_depth": 3858.405625608557, "azimuth": 250.41, "ew": -138.08607558835706, "ns": -49.143085025188114, "inclination": 23.33}, {"displacement": 158.92926174562896, "dls": 1.9999999999999472, "depth": 3900.0, "vertical_depth": 3885.739868310423, "azimuth": 250.41, "ew": -149.72979809914835, "ns": -53.28693836390781, "inclination": 25.33}, {"displacement": 171.9795438608509, "dls": 2.0074728260870454, "depth": 3929.44, "vertical_depth": 3912.1277131463253, "azimuth": 250.41, "ew": -162.02467749886875, "ns": -57.662530190531044, "inclination": 27.3}, {"displacement": 1111.9130083432817, "dls": 0.0, "depth": 5978.79, "vertical_depth": 5733.215438887744, "azimuth": 250.41, "ew": -1047.5510199595772, "ns": -372.81013760982455, "inclination": 27.3}]}, "objective": {"_id": "GBZnlbMJr8", "co2": null, "h2s": null, "targets": []}, "production_profiles": [], "operation": {"data_string": {"annular_test_pressure": 6000, "_id": "Q0jzd70X3M"}, "name": "Prod GL PA", "type": "PRODUCTION", "simulations": [{"status": "SCHEDULED", "production_profile_id": "Daq40oro2q", "is_outdated": false}], "tubing_string": {"top_md": 2072, "completion_fluid": {"_id": "BrxBAwD9LW", "minimum_fluid_weight": 0, "fluid": "", "fluid_weight": 9}, "name": "Coluna #1", "annular_fluids": [{"solid_ratio": null, "is_custom": false, "weight": 9, "extension": 3493.1800000000003, "top": 2072, "corrected_solid_ratio": null, "fluid": "DFLT_FCBA_9.00", "salinity": null, "is_salinity_custom": null, "oil_water_ratio": null, "solid_density": null, "base": 5565.18, "is_oil_water_ratio_custom": null, "is_weight_custom": false, "is_solid_ratio_custom": null, "fluid_type": "FCBA"}], "base_md": 5897.12, "od": 6.625, "load_scenarios": [{"comment": "Gerado automaticamente", "category": "SERVICE", "is_complete": true, "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o #1", "geopressures": {"fracture_pressure_id": "", "_id": "xx6LloVjej", "overburden_pressure_id": "", "pore_pressure_id": ""}, "type": "TUBING_PRESSURE_TEST", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"plug_depth": 5565.18, "test_pressure": 5000, "mud_weight": 9}, "_id": "2qgkxWNgK9", "backup": {"attributes": {}, "type": "TUBING_HYDROSTATIC", "geopressures": {"fracture_pressure_id": "", "_id": "qP9dEwRed1", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 1, "stage": "PRODUCTION"}, {"comment": "Gerado automaticamente", "category": "SERVICE", "is_complete": true, "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o do Anular #1", "geopressures": {"fracture_pressure_id": "", "_id": "4MVLN4Oqr2", "overburden_pressure_id": "", "pore_pressure_id": ""}, "type": "ANNULUS_PRESSURE_TEST", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"fluid": 9, "internal_pressure": 0.0}, "_id": "R9XVGnKRl3", "backup": {"attributes": {"annulus_pressure": 6000, "packer_depth": 5565.18, "fluid": 9}, "type": "PRESSURIZED_ANNULUS", "geopressures": {"fracture_pressure_id": "", "_id": "2BWxwbKpzY", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 2, "stage": "PRODUCTION"}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PO", "geopressures": {}, "type": "THERMAL", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4N2k8v72P2", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 3970.164922205433, "depth": 2072.0, "density": 5.24484631130687}, {"pressure": 4056.4597815648335, "depth": 2112.11, "density": 5.287856789122516}, {"pressure": 4056.7440769158266, "depth": 2112.31, "density": 5.287995591179031}, {"pressure": 4127.598574715061, "depth": 2167.9, "density": 5.32250995864109}, {"pressure": 4127.852745326099, "depth": 2168.1, "density": 5.322630427263732}, {"pressure": 4376.219233527066, "depth": 2337.3275, "density": 5.368858274479566}, {"pressure": 4631.605187630597, "depth": 2506.5550000000003, "density": 5.40427304538075}, {"pressure": 4887.409062043315, "depth": 2675.7825000000003, "density": 5.435783101284677}, {"pressure": 5143.602208071672, "depth": 2845.01, "density": 5.464849546173478}, {"pressure": 5144.100429822999, "depth": 2845.21, "density": 5.46491354992483}, {"pressure": 5295.013200723747, "depth": 2901.4100000000003, "density": 5.484605404685228}, {"pressure": 5295.355462765142, "depth": 2901.61, "density": 5.484646701384024}, {"pressure": 5369.236283143481, "depth": 2950.31, "density": 5.4925243550069744}, {"pressure": 5369.734091304978, "depth": 2950.5099999999998, "density": 5.492575663131621}, {"pressure": 5516.479245835702, "depth": 3005.21, "density": 5.50797041502018}, {"pressure": 5516.8217848111135, "depth": 3005.41, "density": 5.508003134016332}, {"pressure": 5617.835176783186, "depth": 3071.9, "density": 5.517362709073765}, {"pressure": 5618.139104074497, "depth": 3072.1, "density": 5.517391095292115}, {"pressure": 5829.894496538654, "depth": 3211.366666666667, "density": 5.537433380436882}, {"pressure": 6041.894224224394, "depth": 3350.633333333333, "density": 5.555717361090349}, {"pressure": 6254.120422895878, "depth": 3489.9, "density": 5.572381533819413}, {"pressure": 6254.425361979752, "depth": 3490.1, "density": 5.572404804778714}, {"pressure": 6523.761514803976, "depth": 3666.95, "density": 5.593198596699949}, {"pressure": 6787.552026078631, "depth": 3843.7999999999997, "density": 5.6100833638354795}, {"pressure": 7040.529969162247, "depth": 4020.6499999999996, "density": 5.626897088159938}, {"pressure": 7292.592864095492, "depth": 4197.5, "density": 5.64198852445929}, {"pressure": 7544.89693238247, "depth": 4374.349999999999, "density": 5.656702846615072}, {"pressure": 7797.443143022119, "depth": 4551.2, "density": 5.671025780593375}, {"pressure": 8050.229952459254, "depth": 4728.049999999999, "density": 5.684168067508341}, {"pressure": 8303.262369965205, "depth": 4904.9, "density": 5.697750329596764}, {"pressure": 8303.548664821605, "depth": 4905.1, "density": 5.697764047683984}, {"pressure": 8542.723580353768, "depth": 5072.1033333333335, "density": 5.709427381169273}, {"pressure": 8782.125662402424, "depth": 5239.106666666667, "density": 5.721343591643692}, {"pressure": 9021.75378458319, "depth": 5406.11, "density": 5.732568973596364}, {"pressure": 9022.228906083708, "depth": 5406.31, "density": 5.732592075813893}, {"pressure": 9110.90665008143, "depth": 5440.9, "density": 5.7369552982632595}, {"pressure": 9111.41939812835, "depth": 5441.1, "density": 5.7369805656386035}, {"pressure": 9429.296013747906, "depth": 5565.08, "density": 5.75272773960641}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 5.752738238337729}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 5.754302718765482}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 5.754310108772698}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 5.760378860164837}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.766756252795241}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 11000, "apb_data": {"pressure_variation": 9334.97404159617, "initial_volume": 87.9675888778126, "volume_variation": 0.40552018967729, "leakage_bbl": 0.0, "final_volume": 88.37310906748989, "leakage_mass": 0.0}, "operation_id": "7qWOQo3oG4"}, "_id": "7qWOQo3oG4-4", "backup": {"pressure_profile": [{"pressure": 12512.97404159617, "depth": 2072.0, "density": 8.859906818746389}, {"pressure": 12543.24070972043, "depth": 2092.0550000000003, "density": 8.85952294025045}, {"pressure": 12573.50737784469, "depth": 2112.11, "density": 8.860439312300624}, {"pressure": 12573.658211107302, "depth": 2112.21, "density": 8.862828328313816}, {"pressure": 12573.809044369917, "depth": 2112.31, "density": 8.862271752527683}, {"pressure": 12615.738401410206, "depth": 2140.105, "density": 8.863537712166163}, {"pressure": 12657.667758450494, "depth": 2167.9, "density": 8.864684299469264}, {"pressure": 12657.818824008666, "depth": 2168.0, "density": 8.875842694211258}, {"pressure": 12657.969889566837, "depth": 2168.1, "density": 8.877768373937675}, {"pressure": 12785.835265241049, "depth": 2252.71375, "density": 8.878738407014218}, {"pressure": 12913.70064091526, "depth": 2337.3275, "density": 8.879068277717442}, {"pressure": 13041.582289377362, "depth": 2421.94125, "density": 8.879953352945817}, {"pressure": 13169.463937839464, "depth": 2506.5550000000003, "density": 8.880190877235918}, {"pressure": 13297.363660358313, "depth": 2591.1687500000003, "density": 8.8805712298538}, {"pressure": 13425.263382877158, "depth": 2675.7825000000003, "density": 8.881607054266912}, {"pressure": 13553.184713670962, "depth": 2760.3962500000002, "density": 8.882174307188892}, {"pressure": 13681.106044464765, "depth": 2845.01, "density": 8.883323969525053}, {"pressure": 13681.25725542865, "depth": 2845.11, "density": 8.879991491787337}, {"pressure": 13681.408466392537, "depth": 2845.21, "density": 8.879993873081801}, {"pressure": 13723.903626634657, "depth": 2873.3100000000004, "density": 8.880740859335335}, {"pressure": 13766.398786876778, "depth": 2901.4100000000003, "density": 8.881687695898322}, {"pressure": 13766.550010998813, "depth": 2901.51, "density": 8.885862517875177}, {"pressure": 13766.701235120847, "depth": 2901.61, "density": 8.885870322303456}, {"pressure": 13803.524517824533, "depth": 2925.96, "density": 8.887770310031241}, {"pressure": 13840.34780052822, "depth": 2950.31, "density": 8.88966951129137}, {"pressure": 13840.499047791074, "depth": 2950.41, "density": 8.885507513917245}, {"pressure": 13840.650295053929, "depth": 2950.5099999999998, "density": 8.885515318223522}, {"pressure": 13882.021226627256, "depth": 2977.8599999999997, "density": 8.887649396692627}, {"pressure": 13923.392158200584, "depth": 3005.21, "density": 8.889538209046455}, {"pressure": 13923.54342386359, "depth": 3005.31, "density": 8.89395684217363}, {"pressure": 13923.694689526596, "depth": 3005.41, "density": 8.893964633683726}, {"pressure": 13973.984299763191, "depth": 3038.6549999999997, "density": 8.896554213253783}, {"pressure": 14024.273909999787, "depth": 3071.9, "density": 8.897314172953244}, {"pressure": 14024.42519542252, "depth": 3072.0, "density": 8.888629651166893}, {"pressure": 14024.576480845253, "depth": 3072.1, "density": 8.888604896750955}, {"pressure": 14129.932998190352, "depth": 3141.7333333333336, "density": 8.889788598950393}, {"pressure": 14235.28951553545, "depth": 3211.366666666667, "density": 8.890359669160333}, {"pressure": 14340.6677876259, "depth": 3281.0, "density": 8.89101917198612}, {"pressure": 14446.046059716346, "depth": 3350.633333333333, "density": 8.892307385961658}, {"pressure": 14551.448289776983, "depth": 3420.2666666666664, "density": 8.893673342110304}, {"pressure": 14656.850519837622, "depth": 3489.9, "density": 8.894402410256667}, {"pressure": 14657.001974298671, "depth": 3490.0, "density": 8.89855846547861}, {"pressure": 14657.15342875972, "depth": 3490.1, "density": 8.899259775697562}, {"pressure": 14790.721134496478, "depth": 3578.5249999999996, "density": 8.899519589008403}, {"pressure": 14924.288840233237, "depth": 3666.95, "density": 8.900807519127845}, {"pressure": 15053.219125104872, "depth": 3755.375, "density": 8.902201849664914}, {"pressure": 15182.149409976506, "depth": 3843.7999999999997, "density": 8.902569725133828}, {"pressure": 15302.309389403372, "depth": 3932.2249999999995, "density": 8.903997342265717}, {"pressure": 15422.469368830238, "depth": 4020.6499999999996, "density": 8.90442955209611}, {"pressure": 15541.732445481744, "depth": 4109.075, "density": 8.90495996577888}, {"pressure": 15660.99552213325, "depth": 4197.5, "density": 8.906515301924676}, {"pressure": 15780.287848557631, "depth": 4285.924999999999, "density": 8.908204271801862}, {"pressure": 15899.580174982011, "depth": 4374.349999999999, "density": 8.908835361830445}, {"pressure": 16018.904655566157, "depth": 4462.775, "density": 8.909556386262288}, {"pressure": 16138.229136150303, "depth": 4551.2, "density": 8.911376123471388}, {"pressure": 16257.589281645893, "depth": 4639.625, "density": 8.912211102664571}, {"pressure": 16376.949427141482, "depth": 4728.049999999999, "density": 8.914212123790778}, {"pressure": 16496.348618376178, "depth": 4816.474999999999, "density": 8.916345881911631}, {"pressure": 16615.747809610875, "depth": 4904.9, "density": 8.91725119954531}, {"pressure": 16615.882818627626, "depth": 4905.0, "density": 8.913961880416911}, {"pressure": 16616.01782764438, "depth": 4905.1, "density": 8.913538430508968}, {"pressure": 16728.77029126115, "depth": 4988.601666666667, "density": 8.91602554492536}, {"pressure": 16841.522754877922, "depth": 5072.1033333333335, "density": 8.91806835950655}, {"pressure": 16954.321969012562, "depth": 5155.605, "density": 8.919771966716707}, {"pressure": 17067.121183147206, "depth": 5239.106666666667, "density": 8.922317467844227}, {"pressure": 17179.977592277603, "depth": 5322.608333333334, "density": 8.924742185412658}, {"pressure": 17292.834001407995, "depth": 5406.11, "density": 8.927252446057954}, {"pressure": 17292.969192119148, "depth": 5406.21, "density": 8.92620834494523}, {"pressure": 17293.104382830297, "depth": 5406.31, "density": 8.926211462013013}, {"pressure": 17316.487727170344, "depth": 5423.605, "density": 8.926765451386437}, {"pressure": 17339.87107151039, "depth": 5440.9, "density": 8.927350866814672}, {"pressure": 17340.006286677282, "depth": 5441.0, "density": 8.926925832752348}, {"pressure": 17340.141501844177, "depth": 5441.1, "density": 8.92692921830442}, {"pressure": 17423.98728958749, "depth": 5503.09, "density": 8.930215115712253}, {"pressure": 17507.833077330804, "depth": 5565.08, "density": 8.933519126392957}, {"pressure": 17507.954808592247, "depth": 5565.17, "density": 8.933519126392957}, {"pressure": 9429.453932604843, "depth": 5565.1900000000005, "density": 5.752738238337729}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 5.752738238337729}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 5.754302718765482}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 5.754310108772698}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 5.760378860164837}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.766756252795241}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 3, "stage": "PRODUCTION"}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PA", "geopressures": {}, "type": "THERMAL", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "EjDnE2kq5z", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5081.543330705224, "depth": 2072.0, "density": 10.674942125040534}, {"pressure": 5154.463479386348, "depth": 2112.11, "density": 10.674942125040534}, {"pressure": 5154.729782626977, "depth": 2112.31, "density": 7.812538170321899}, {"pressure": 5223.371375987518, "depth": 2167.9, "density": 7.254884981871999}, {"pressure": 5223.618428155485, "depth": 2168.1, "density": 7.247769451638367}, {"pressure": 5432.8431713150985, "depth": 2337.3275, "density": 7.264151353677423}, {"pressure": 5642.383376861897, "depth": 2506.5550000000003, "density": 7.275060960172339}, {"pressure": 5852.244000586632, "depth": 2675.7825000000003, "density": 7.286228726545228}, {"pressure": 6062.426190315201, "depth": 2845.01, "density": 7.29735011487494}, {"pressure": 6062.770913859334, "depth": 2845.21, "density": 10.113154614228703}, {"pressure": 6165.055577853925, "depth": 2901.4100000000003, "density": 10.693388406212478}, {"pressure": 6165.323568723582, "depth": 2901.61, "density": 7.901555922747114}, {"pressure": 6225.913257982565, "depth": 2950.31, "density": 7.309782102195059}, {"pressure": 6226.258142670403, "depth": 2950.5099999999998, "density": 10.168725715684262}, {"pressure": 6325.8482369680605, "depth": 3005.21, "density": 10.697206760312623}, {"pressure": 6326.1165038296385, "depth": 3005.41, "density": 7.870144918121326}, {"pressure": 6408.947719567878, "depth": 3071.9, "density": 7.319445702835113}, {"pressure": 6409.196943072566, "depth": 3072.1, "density": 7.311469957007408}, {"pressure": 6582.8408976066985, "depth": 3211.366666666667, "density": 7.325768204676366}, {"pressure": 6756.665700626388, "depth": 3350.633333333333, "density": 7.333450650639767}, {"pressure": 6930.671065959044, "depth": 3489.9, "density": 7.3410155638128085}, {"pressure": 6930.921088302758, "depth": 3490.1, "density": 7.3349054975349315}, {"pressure": 7151.655055452435, "depth": 3666.95, "density": 7.3566704659157915}, {"pressure": 7366.704750999159, "depth": 3843.7999999999997, "density": 7.423866274723627}, {"pressure": 7570.772543478621, "depth": 4020.6499999999996, "density": 7.531197066352129}, {"pressure": 7773.868248316369, "depth": 4197.5, "density": 7.582746249268261}, {"pressure": 7977.154974659774, "depth": 4374.349999999999, "density": 7.589878195296857}, {"pressure": 8180.635432496095, "depth": 4551.2, "density": 7.597111320942968}, {"pressure": 8384.318889006508, "depth": 4728.049999999999, "density": 7.604690444469053}, {"pressure": 8588.20001404185, "depth": 4904.9, "density": 7.612070562464109}, {"pressure": 8588.430697082133, "depth": 4905.1, "density": 7.646947291297027}, {"pressure": 8781.155253199015, "depth": 5072.1033333333335, "density": 7.619789898789728}, {"pressure": 8974.081542118764, "depth": 5239.106666666667, "density": 7.627765849568972}, {"pressure": 9167.199040553918, "depth": 5406.11, "density": 7.635325738995607}, {"pressure": 9167.524825329016, "depth": 5406.31, "density": 10.738817918021573}, {"pressure": 9227.13962069832, "depth": 5440.9, "density": 11.379895576987375}, {"pressure": 9227.48434422416, "depth": 5441.1, "density": 11.36309446915446}, {"pressure": 9441.243857658057, "depth": 5565.08, "density": 11.384235135580552}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.960216471289632}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 8686.61673111335, "initial_volume": 87.9675888778126, "volume_variation": 0.36469766093472344, "leakage_bbl": 0.0, "final_volume": 88.33228653874733, "leakage_mass": 0.0}, "operation_id": "NPMo3LQLxK"}, "_id": "NPMo3LQLxK-4", "backup": {"pressure_profile": [{"pressure": 11864.61673111335, "depth": 2072.0, "density": 8.882971206950703}, {"pressure": 11894.958996345724, "depth": 2092.0550000000003, "density": 8.881747484896552}, {"pressure": 11925.301261578097, "depth": 2112.11, "density": 8.881741430963901}, {"pressure": 11925.452456341742, "depth": 2112.21, "density": 8.883987575835851}, {"pressure": 11925.603651105384, "depth": 2112.31, "density": 8.883489336851055}, {"pressure": 11967.62991148862, "depth": 2140.105, "density": 8.88397887456528}, {"pressure": 12009.656171871855, "depth": 2167.9, "density": 8.88436661650713}, {"pressure": 12009.807569589975, "depth": 2168.0, "density": 8.895238565779298}, {"pressure": 12009.958967308094, "depth": 2168.1, "density": 8.897343809712629}, {"pressure": 12138.08557441296, "depth": 2252.71375, "density": 8.897073414206186}, {"pressure": 12266.212181517827, "depth": 2337.3275, "density": 8.896201117542537}, {"pressure": 12394.32566303503, "depth": 2421.94125, "density": 8.896135832339262}, {"pressure": 12522.439144552234, "depth": 2506.5550000000003, "density": 8.895449037238457}, {"pressure": 12650.543498418694, "depth": 2591.1687500000003, "density": 8.894866926729012}, {"pressure": 12778.647852285152, "depth": 2675.7825000000003, "density": 8.894917421327326}, {"pressure": 12906.746577077154, "depth": 2760.3962500000002, "density": 8.894486580305605}, {"pressure": 13034.845301869153, "depth": 2845.01, "density": 8.894701103424017}, {"pressure": 13034.996704379295, "depth": 2845.11, "density": 8.891570298036527}, {"pressure": 13035.14810688944, "depth": 2845.21, "density": 8.891570842627349}, {"pressure": 13077.694167119009, "depth": 2873.3100000000004, "density": 8.891794056272483}, {"pressure": 13120.240227348579, "depth": 2901.4100000000003, "density": 8.892197467322557}, {"pressure": 13120.391630473632, "depth": 2901.51, "density": 8.896131752209909}, {"pressure": 13120.54303359869, "depth": 2901.61, "density": 8.89613796026949}, {"pressure": 13157.40921923429, "depth": 2925.96, "density": 8.897649353453945}, {"pressure": 13194.275404869893, "depth": 2950.31, "density": 8.899160229517904}, {"pressure": 13194.426817290248, "depth": 2950.41, "density": 8.895234960160328}, {"pressure": 13194.578229710605, "depth": 2950.5099999999998, "density": 8.895241169647601}, {"pressure": 13235.991477691243, "depth": 2977.8599999999997, "density": 8.896939176853618}, {"pressure": 13277.40472567188, "depth": 3005.21, "density": 8.898414024272109}, {"pressure": 13277.556139544422, "depth": 3005.31, "density": 8.902571188405204}, {"pressure": 13277.707553416965, "depth": 3005.41, "density": 8.902577387630505}, {"pressure": 13328.044680993042, "depth": 3038.6549999999997, "density": 8.904637828185008}, {"pressure": 13378.381808569116, "depth": 3071.9, "density": 8.90494581728173}, {"pressure": 13378.53323056082, "depth": 3072.0, "density": 8.89671292215603}, {"pressure": 13378.684652552523, "depth": 3072.1, "density": 8.896684031023842}, {"pressure": 13484.128007741614, "depth": 3141.7333333333336, "density": 8.89716512105631}, {"pressure": 13589.571362930705, "depth": 3211.366666666667, "density": 8.89706464154353}, {"pressure": 13695.02030232424, "depth": 3281.0, "density": 8.897044858452821}, {"pressure": 13800.46924171777, "depth": 3350.633333333333, "density": 8.897623896172552}, {"pressure": 13905.926132163559, "depth": 3420.2666666666664, "density": 8.898330499275671}, {"pressure": 14011.383022609345, "depth": 3489.9, "density": 8.898427442610375}, {"pressure": 14011.5345437497, "depth": 3490.0, "density": 8.902451299165463}, {"pressure": 14011.686064890055, "depth": 3490.1, "density": 8.903216818309117}, {"pressure": 14145.29851139474, "depth": 3578.5249999999996, "density": 8.902589112426961}, {"pressure": 14278.910957899427, "depth": 3666.95, "density": 8.902937887709276}, {"pressure": 14407.858702962745, "depth": 3755.375, "density": 8.903412255615253}, {"pressure": 14536.806448026064, "depth": 3843.7999999999997, "density": 8.902928499704128}, {"pressure": 14656.959121232649, "depth": 3932.2249999999995, "density": 8.903474086563959}, {"pressure": 14777.111794439232, "depth": 4020.6499999999996, "density": 8.903096114134485}, {"pressure": 14896.34590193197, "depth": 4109.075, "density": 8.902868375293458}, {"pressure": 15015.58000942471, "depth": 4197.5, "density": 8.903595973005977}, {"pressure": 15134.822891659145, "depth": 4285.924999999999, "density": 8.904508318608697}, {"pressure": 15254.06577389358, "depth": 4374.349999999999, "density": 8.904432243707559}, {"pressure": 15373.321582627388, "depth": 4462.775, "density": 8.904479603910138}, {"pressure": 15492.577391361194, "depth": 4551.2, "density": 8.905562590123537}, {"pressure": 15611.850234962365, "depth": 4639.625, "density": 8.905756144309033}, {"pressure": 15731.123078563534, "depth": 4728.049999999999, "density": 8.907053241139273}, {"pressure": 15850.418070811053, "depth": 4816.474999999999, "density": 8.9085510444981}, {"pressure": 15969.713063058574, "depth": 4904.9, "density": 8.908885246424722}, {"pressure": 15969.847945838601, "depth": 4905.0, "density": 8.90569789594474}, {"pressure": 15969.98282861863, "depth": 4905.1, "density": 8.905232008766914}, {"pressure": 16082.624015081148, "depth": 4988.601666666667, "density": 8.907228804274636}, {"pressure": 16195.265201543665, "depth": 5072.1033333333335, "density": 8.908787830360843}, {"pressure": 16307.941875964365, "depth": 5155.605, "density": 8.910059998520705}, {"pressure": 16420.61855038507, "depth": 5239.106666666667, "density": 8.91214896331082}, {"pressure": 16533.341491792977, "depth": 5322.608333333334, "density": 8.914012245048877}, {"pressure": 16646.06443320088, "depth": 5406.11, "density": 8.916031479475517}, {"pressure": 16646.199457405917, "depth": 5406.21, "density": 8.915130075059682}, {"pressure": 16646.33448161095, "depth": 5406.31, "density": 8.915132672855963}, {"pressure": 16669.688376430164, "depth": 5423.605, "density": 8.915554377155795}, {"pressure": 16693.04227124938, "depth": 5440.9, "density": 8.915917644805294}, {"pressure": 16693.177312389453, "depth": 5441.0, "density": 8.915520681610602}, {"pressure": 16693.31235352953, "depth": 5441.1, "density": 8.915522782881704}, {"pressure": 16777.042147026335, "depth": 5503.09, "density": 8.9179107174159}, {"pressure": 16860.771940523144, "depth": 5565.08, "density": 8.920316488371675}, {"pressure": 16860.89350337868, "depth": 5565.17, "density": 8.920316488371675}, {"pressure": 9441.371045838301, "depth": 5565.1900000000005, "density": 6.89027265347066}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978.0, "density": 5.960216471289632}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 4, "stage": "PRODUCTION"}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PO", "geopressures": {}, "type": "THERMAL", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "RdVqZ7MzBp", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 4789.801500516719, "depth": 2072.0, "density": 10.7510484291191}, {"pressure": 4814.298000917049, "depth": 2085.37, "density": 10.7510484291191}, {"pressure": 4838.786914672316, "depth": 2098.7400000000002, "density": 10.754959024525355}, {"pressure": 4863.26845445362, "depth": 2112.11, "density": 10.758968355390564}, {"pressure": 4863.522969969829, "depth": 2112.31, "density": 7.4667216990344185}, {"pressure": 4885.036193884555, "depth": 2130.84, "density": 6.821220751000591}, {"pressure": 4906.554331148926, "depth": 2149.37, "density": 6.823147351111552}, {"pressure": 4928.078305254564, "depth": 2167.9, "density": 6.824629325448259}, {"pressure": 4928.31065423307, "depth": 2168.1, "density": 6.816421982415275}, {"pressure": 4951.443691813084, "depth": 2188.0091176470587, "density": 6.826817457850115}, {"pressure": 4974.584066437958, "depth": 2207.9182352941175, "density": 6.82932619455704}, {"pressure": 4997.731750188861, "depth": 2227.8273529411763, "density": 6.831139706269267}, {"pressure": 5020.88673167801, "depth": 2247.736470588235, "density": 6.833293350237927}, {"pressure": 5044.049013849802, "depth": 2267.645588235294, "density": 6.835447863131216}, {"pressure": 5067.218610357365, "depth": 2287.554705882353, "density": 6.837606405214577}, {"pressure": 5090.395527836949, "depth": 2307.463823529412, "density": 6.839766905729492}, {"pressure": 5113.579773955358, "depth": 2327.3729411764707, "density": 6.84227381294464}, {"pressure": 5136.771357325336, "depth": 2347.2820588235295, "density": 6.844094973594546}, {"pressure": 5159.970287122302, "depth": 2367.1911764705883, "density": 6.846262986154141}, {"pressure": 5183.17657287138, "depth": 2387.100294117647, "density": 6.848433809684197}, {"pressure": 5206.390224328896, "depth": 2407.009411764706, "density": 6.850607512414659}, {"pressure": 5229.6112514169, "depth": 2426.9185294117647, "density": 6.853128833366347}, {"pressure": 5252.839664189081, "depth": 2446.8276470588235, "density": 6.854963741047014}, {"pressure": 5276.075472808269, "depth": 2466.7367647058823, "density": 6.857146338005392}, {"pressure": 5299.318687532202, "depth": 2486.645882352941, "density": 6.859331962136632}, {"pressure": 5322.5693187060315, "depth": 2506.5550000000003, "density": 6.861520639237927}, {"pressure": 5345.827311076514, "depth": 2526.4641176470586, "density": 6.863693010490322}, {"pressure": 5369.09187914131, "depth": 2546.373235294118, "density": 6.86597890766978}, {"pressure": 5392.3627862489, "depth": 2566.2823529411767, "density": 6.867504293485389}, {"pressure": 5415.640041214832, "depth": 2586.1914705882355, "density": 6.8693776172975385}, {"pressure": 5438.923652775731, "depth": 2606.1005882352943, "density": 6.871253519385409}, {"pressure": 5462.2136296508925, "depth": 2626.009705882353, "density": 6.8731319946343925}, {"pressure": 5485.509980576347, "depth": 2645.918823529412, "density": 6.875013047983561}, {"pressure": 5508.812714323544, "depth": 2665.8279411764706, "density": 6.877242592842677}, {"pressure": 5532.121840772956, "depth": 2685.7370588235294, "density": 6.87878324762496}, {"pressure": 5555.4374036069, "depth": 2705.646176470588, "density": 6.880682696503668}, {"pressure": 5578.759437164634, "depth": 2725.5552941176475, "density": 6.882592279279992}, {"pressure": 5602.087950535851, "depth": 2745.464411764706, "density": 6.884504544526621}, {"pressure": 5625.422952709602, "depth": 2765.373529411765, "density": 6.886419462542454}, {"pressure": 5648.76445264419, "depth": 2785.282647058824, "density": 6.888683502650836}, {"pressure": 5672.112459305928, "depth": 2805.1917647058826, "density": 6.890257232022873}, {"pressure": 5695.466981691722, "depth": 2825.1008823529414, "density": 6.89218009488032}, {"pressure": 5718.828029602085, "depth": 2845.01, "density": 6.89410584997795}, {"pressure": 5719.172274315401, "depth": 2845.21, "density": 10.099107154577815}, {"pressure": 5753.469164060663, "depth": 2863.9433333333336, "density": 10.757126791647588}, {"pressure": 5787.767396360512, "depth": 2882.6766666666667, "density": 10.756972856325167}, {"pressure": 5822.066974201328, "depth": 2901.4100000000003, "density": 10.757394859055042}, {"pressure": 5822.323886494672, "depth": 2901.61, "density": 7.57491050233326}, {"pressure": 5841.404710830147, "depth": 2917.8433333333332, "density": 6.905676579445551}, {"pressure": 5860.489801416226, "depth": 2934.076666666667, "density": 6.907646690812454}, {"pressure": 5879.579205312817, "depth": 2950.31, "density": 6.9092078479338}, {"pressure": 5879.923578028184, "depth": 2950.5099999999998, "density": 10.153630503239402}, {"pressure": 5910.129903114247, "depth": 2967.0066666666667, "density": 10.758321707537235}, {"pressure": 5940.33736422191, "depth": 2983.503333333333, "density": 10.758073280916497}, {"pressure": 5970.546162102061, "depth": 3000.0, "density": 10.759202420905737}, {"pressure": 5981.615723471987, "depth": 3005.21, "density": 12.485494883102163}, {"pressure": 5981.91533384468, "depth": 3005.41, "density": 8.789669503722427}, {"pressure": 6004.539904620472, "depth": 3022.0325, "density": 7.996831721077149}, {"pressure": 6027.167516138171, "depth": 3038.6549999999997, "density": 7.997906495117058}, {"pressure": 6049.798175774911, "depth": 3055.2775, "density": 7.99946577219186}, {"pressure": 6072.431890938443, "depth": 3071.9, "density": 8.00006387653652}, {"pressure": 6072.704235818802, "depth": 3072.1, "density": 7.989781755081508}, {"pressure": 6099.798292135645, "depth": 3091.995238095238, "density": 8.00139249212034}, {"pressure": 6126.896762938162, "depth": 3111.890476190476, "density": 8.002696174083422}, {"pressure": 6153.9996610027965, "depth": 3131.785714285714, "density": 8.004003629174324}, {"pressure": 6181.106999164422, "depth": 3151.6809523809525, "density": 8.00531487464869}, {"pressure": 6208.218790316694, "depth": 3171.5761904761903, "density": 8.0066299278661}, {"pressure": 6235.335047411888, "depth": 3191.4714285714285, "density": 8.007948806137343}, {"pressure": 6262.455783459999, "depth": 3211.366666666667, "density": 8.009271526509373}, {"pressure": 6289.581011528481, "depth": 3231.2619047619046, "density": 8.010598105949889}, {"pressure": 6316.71074474199, "depth": 3251.157142857143, "density": 8.011928561352113}, {"pressure": 6343.845002487066, "depth": 3271.052380952381, "density": 8.013668087454429}, {"pressure": 6370.983878093829, "depth": 3290.947619047619, "density": 8.014628484755374}, {"pressure": 6398.127409647106, "depth": 3310.842857142857, "density": 8.016003474718088}, {"pressure": 6425.275611320595, "depth": 3330.7380952380954, "density": 8.017382650444421}, {"pressure": 6452.4284973344975, "depth": 3350.633333333333, "density": 8.018766025667977}, {"pressure": 6479.586081954232, "depth": 3370.5285714285715, "density": 8.020153613742304}, {"pressure": 6506.748379490912, "depth": 3390.4238095238097, "density": 8.021545428161687}, {"pressure": 6533.915361233895, "depth": 3410.3190476190475, "density": 8.022928763779682}, {"pressure": 6561.086542300357, "depth": 3430.214285714286, "density": 8.024168904235921}, {"pressure": 6588.261822879068, "depth": 3450.109523809524, "density": 8.025379568528747}, {"pressure": 6615.441213578711, "depth": 3470.004761904762, "density": 8.026593365768269}, {"pressure": 6642.624725066872, "depth": 3489.9, "density": 8.027810313350063}, {"pressure": 6642.898012520548, "depth": 3490.1, "density": 8.017434028498583}, {"pressure": 6670.128561305448, "depth": 3510.0267605633803, "density": 8.029173422811125}, {"pressure": 6697.362843291981, "depth": 3529.9535211267603, "density": 8.029870659687724}, {"pressure": 6724.600551350303, "depth": 3549.8802816901407, "density": 8.031284399286342}, {"pressure": 6751.838387269392, "depth": 3569.807042253521, "density": 8.032533095680748}, {"pressure": 6779.063583673085, "depth": 3589.7338028169015, "density": 8.036075932137447}, {"pressure": 6806.2567372787935, "depth": 3609.6605633802815, "density": 8.041586082663827}, {"pressure": 6833.407577948613, "depth": 3629.587323943662, "density": 8.04895121999289}, {"pressure": 6860.5058844924515, "depth": 3649.5140845070423, "density": 8.056988132933794}, {"pressure": 6887.541455567159, "depth": 3669.4408450704223, "density": 8.066950250393544}, {"pressure": 6914.504115144092, "depth": 3689.3676056338027, "density": 8.07764660718395}, {"pressure": 6941.383717981808, "depth": 3709.294366197183, "density": 8.089940071301276}, {"pressure": 6968.170155101943, "depth": 3729.221126760563, "density": 8.10430264315368}, {"pressure": 6994.853359261978, "depth": 3749.1478873239435, "density": 8.119543205506995}, {"pressure": 7021.423310423631, "depth": 3769.074647887324, "density": 8.136562184023198}, {"pressure": 7047.87004121695, "depth": 3789.001408450704, "density": 8.154153875812883}, {"pressure": 7074.183642391249, "depth": 3808.9281690140842, "density": 8.174966828872309}, {"pressure": 7100.354268245154, "depth": 3828.8549295774646, "density": 8.196953511728276}, {"pressure": 7126.3721117417535, "depth": 3848.781690140845, "density": 8.21974450419692}, {"pressure": 7152.22715080967, "depth": 3868.708450704225, "density": 8.245114203331404}, {"pressure": 7177.90978665745, "depth": 3888.6352112676054, "density": 8.2724142277812}, {"pressure": 7203.410502112611, "depth": 3908.561971830986, "density": 8.301314794807425}, {"pressure": 7228.719284019282, "depth": 3928.488732394366, "density": 8.33221563007533}, {"pressure": 7253.9221924773055, "depth": 3948.415492957746, "density": 8.35077620773721}, {"pressure": 7279.126315409379, "depth": 3968.3422535211266, "density": 8.351650245193559}, {"pressure": 7304.3332885716345, "depth": 3988.269014084507, "density": 8.352594698832194}, {"pressure": 7329.543120762705, "depth": 4008.195774647887, "density": 8.353070329675164}, {"pressure": 7354.755820845649, "depth": 4028.1225352112674, "density": 8.354492374014088}, {"pressure": 7379.971397748022, "depth": 4048.049295774648, "density": 8.355445638277748}, {"pressure": 7405.189860460209, "depth": 4067.976056338028, "density": 8.355929981787035}, {"pressure": 7430.411218035046, "depth": 4087.902816901408, "density": 8.357361124673663}, {"pressure": 7455.6354795874595, "depth": 4107.829577464789, "density": 8.358323388074183}, {"pressure": 7480.862654293438, "depth": 4127.756338028169, "density": 8.35928869203476}, {"pressure": 7506.092751390189, "depth": 4147.683098591549, "density": 8.359784939319795}, {"pressure": 7531.325780176975, "depth": 4167.609859154929, "density": 8.36122850305454}, {"pressure": 7556.561750015171, "depth": 4187.536619718309, "density": 8.362203051258621}, {"pressure": 7581.800670327343, "depth": 4207.46338028169, "density": 8.363180721727863}, {"pressure": 7607.042550599779, "depth": 4227.39014084507, "density": 8.363689197565735}, {"pressure": 7632.287400383287, "depth": 4247.316901408451, "density": 8.365145514189273}, {"pressure": 7657.535229289767, "depth": 4267.243661971831, "density": 8.366132677804641}, {"pressure": 7682.786046991043, "depth": 4287.170422535211, "density": 8.367123046279096}, {"pressure": 7708.0398604320435, "depth": 4307.097183098591, "density": 8.36764315471708}, {"pressure": 7733.296527479424, "depth": 4327.023943661971, "density": 8.36906128840564}, {"pressure": 7758.555929860188, "depth": 4346.950704225352, "density": 8.369967669785563}, {"pressure": 7783.818075568602, "depth": 4366.877464788732, "density": 8.370876700149601}, {"pressure": 7809.082972668621, "depth": 4386.804225352113, "density": 8.371315633874339}, {"pressure": 7834.350629293565, "depth": 4406.730985915493, "density": 8.372702800090668}, {"pressure": 7859.6210536458275, "depth": 4426.657746478873, "density": 8.373619915539617}, {"pressure": 7884.894253997142, "depth": 4446.584507042253, "density": 8.374066847826235}, {"pressure": 7910.170238688348, "depth": 4466.511267605633, "density": 8.375462392114892}, {"pressure": 7935.44901612915, "depth": 4486.438028169014, "density": 8.376387798958408}, {"pressure": 7960.7305947971645, "depth": 4506.364788732394, "density": 8.377316014949743}, {"pressure": 7986.014983237263, "depth": 4526.2915492957745, "density": 8.377773928926327}, {"pressure": 8011.302190061176, "depth": 4546.218309859155, "density": 8.379180963383531}, {"pressure": 8036.592223947181, "depth": 4566.145070422535, "density": 8.380117740031924}, {"pressure": 8061.8850936399285, "depth": 4586.071830985915, "density": 8.381057414312055}, {"pressure": 8087.180847130827, "depth": 4605.998591549295, "density": 8.381539644934474}, {"pressure": 8112.479542095461, "depth": 4625.925352112676, "density": 8.382987679194077}, {"pressure": 8137.781188779072, "depth": 4645.852112676056, "density": 8.383965762208584}, {"pressure": 8163.0857964306915, "depth": 4665.7788732394365, "density": 8.38494690998523}, {"pressure": 8188.393374352137, "depth": 4685.705633802816, "density": 8.385457572638906}, {"pressure": 8213.703931899301, "depth": 4705.632394366197, "density": 8.386918470222533}, {"pressure": 8239.01747848319, "depth": 4725.559154929577, "density": 8.387908918863202}, {"pressure": 8264.334023566516, "depth": 4745.485915492957, "density": 8.388902503072819}, {"pressure": 8289.653576662484, "depth": 4765.412676056338, "density": 8.389425448118066}, {"pressure": 8314.976098047964, "depth": 4785.339436619718, "density": 8.390882813416832}, {"pressure": 8340.301432349275, "depth": 4805.2661971830985, "density": 8.391814902553243}, {"pressure": 8365.629575057721, "depth": 4825.192957746478, "density": 8.39227154549004}, {"pressure": 8390.9605344731, "depth": 4845.119718309859, "density": 8.393678843044922}, {"pressure": 8416.294318953927, "depth": 4865.046478873239, "density": 8.39461495808432}, {"pressure": 8441.630936916, "depth": 4884.973239436619, "density": 8.39555386178768}, {"pressure": 8466.970396831302, "depth": 4904.9, "density": 8.396021408800332}, {"pressure": 8467.224737206201, "depth": 4905.1, "density": 8.431167885215727}, {"pressure": 8491.731392805828, "depth": 4924.369615384616, "density": 8.397007186711908}, {"pressure": 8516.240919528234, "depth": 4943.639230769231, "density": 8.39848140460438}, {"pressure": 8540.753319956442, "depth": 4962.908846153847, "density": 8.399466114142996}, {"pressure": 8565.268596703847, "depth": 4982.178461538462, "density": 8.39996115321909}, {"pressure": 8589.786752413946, "depth": 5001.448076923077, "density": 8.401438230066496}, {"pressure": 8614.307789760147, "depth": 5020.717692307692, "density": 8.402425657017204}, {"pressure": 8638.83171144552, "depth": 5039.987307692308, "density": 8.403414010205887}, {"pressure": 8663.358520684505, "depth": 5059.256923076923, "density": 8.40391266811628}, {"pressure": 8687.88822117758, "depth": 5078.526538461539, "density": 8.405394187529536}, {"pressure": 8712.420815664665, "depth": 5097.796153846154, "density": 8.406385849063936}, {"pressure": 8736.956306914226, "depth": 5117.06576923077, "density": 8.406887488768549}, {"pressure": 8761.494697722988, "depth": 5136.335384615385, "density": 8.408372027760091}, {"pressure": 8786.035990915663, "depth": 5155.605, "density": 8.409366564194139}, {"pressure": 8810.580189344646, "depth": 5174.874615384615, "density": 8.409870933322546}, {"pressure": 8835.127295889382, "depth": 5194.1442307692305, "density": 8.41135857855411}, {"pressure": 8859.677313455926, "depth": 5213.413846153846, "density": 8.412356074866711}, {"pressure": 8884.230244977012, "depth": 5232.683461538461, "density": 8.412863256646935}, {"pressure": 8908.786040634497, "depth": 5251.953076923077, "density": 8.414336006583099}, {"pressure": 8933.34459024683, "depth": 5271.222692307692, "density": 8.4152796820304}, {"pressure": 8957.905889230737, "depth": 5290.492307692308, "density": 8.415730300056905}, {"pressure": 8982.46993967166, "depth": 5309.761923076923, "density": 8.417164606498432}, {"pressure": 9007.036743684164, "depth": 5329.031538461538, "density": 8.418108150614268}, {"pressure": 9031.60630341131, "depth": 5348.301153846153, "density": 8.419052429075073}, {"pressure": 9056.178621024002, "depth": 5367.570769230769, "density": 8.419505744026601}, {"pressure": 9080.753698720211, "depth": 5386.840384615384, "density": 8.420943226930902}, {"pressure": 9105.331538724131, "depth": 5406.11, "density": 8.421889764585357}, {"pressure": 9105.72080572641, "depth": 5406.31, "density": 12.831377579647242}, {"pressure": 9141.704077255783, "depth": 5423.605, "density": 13.737279417752859}, {"pressure": 9177.68959411238, "depth": 5440.9, "density": 13.73903055728746}, {"pressure": 9178.105745003159, "depth": 5441.1, "density": 13.717549081762709}, {"pressure": 9214.960060781435, "depth": 5458.811428571429, "density": 13.739056636219292}, {"pressure": 9251.816705135228, "depth": 5476.522857142857, "density": 13.740797755842758}, {"pressure": 9288.675665029938, "depth": 5494.234285714286, "density": 13.740787933554229}, {"pressure": 9325.536927584471, "depth": 5511.9457142857145, "density": 13.741646350624409}, {"pressure": 9362.400480066986, "depth": 5529.657142857143, "density": 13.74250002134198}, {"pressure": 9399.266309889135, "depth": 5547.368571428571, "density": 13.744222258132252}, {"pressure": 9436.134404597635, "depth": 5565.08, "density": 13.744193334560212}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978.0, "density": 6.042353224585787}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 10000, "apb_data": {"pressure_variation": 1822.0, "initial_volume": 87.9675888778126, "volume_variation": -0.2845699540449118, "leakage_bbl": 0.0, "final_volume": 87.68301892376769, "leakage_mass": 0.0}, "operation_id": "mGNrD2K2bD"}, "_id": "mGNrD2K2bD-4", "backup": {"pressure_profile": [{"pressure": 5000.0, "depth": 2072.0, "density": 1.63760284770828}, {"pressure": 5001.843438768823, "depth": 2078.685, "density": 1.6198760137977095}, {"pressure": 5003.686877537648, "depth": 2085.37, "density": 1.6026219221269116}, {"pressure": 5005.4945974242, "depth": 2092.0550000000003, "density": 1.5894507034205718}, {"pressure": 5007.302317310752, "depth": 2098.7400000000002, "density": 1.5764408667724208}, {"pressure": 5009.082991036673, "depth": 2105.425, "density": 1.5665786264573573}, {"pressure": 5010.8636647625935, "depth": 2112.11, "density": 1.5568143830518495}, {"pressure": 5010.890124985783, "depth": 2112.21, "density": 1.5566585810685034}, {"pressure": 5010.916585208972, "depth": 2112.31, "density": 1.556463799029782}, {"pressure": 5013.344872202376, "depth": 2121.575, "density": 1.5431278524705643}, {"pressure": 5015.773159195781, "depth": 2130.84, "density": 1.5299915028352522}, {"pressure": 5018.168855776536, "depth": 2140.105, "density": 1.5220761336035014}, {"pressure": 5020.564552357291, "depth": 2149.37, "density": 1.5142351891345407}, {"pressure": 5022.9406518892165, "depth": 2158.635, "density": 1.509470726676222}, {"pressure": 5025.316751421142, "depth": 2167.9, "density": 1.5047696092774372}, {"pressure": 5025.342324529711, "depth": 2168.0, "density": 1.5047704761635488}, {"pressure": 5025.367897638282, "depth": 2168.1, "density": 1.5047713430347358}, {"pressure": 5027.914865078792, "depth": 2178.054558823529, "density": 1.5054629020644663}, {"pressure": 5030.461832519301, "depth": 2188.0091176470587, "density": 1.5061545024464478}, {"pressure": 5033.010711881156, "depth": 2197.9636764705883, "density": 1.5066151842586775}, {"pressure": 5035.559591243008, "depth": 2207.9182352941175, "density": 1.5070758350227735}, {"pressure": 5038.109792927611, "depth": 2217.8727941176467, "density": 1.5074087419356634}, {"pressure": 5040.659994612214, "depth": 2227.8273529411763, "density": 1.507741577705796}, {"pressure": 5043.211192938014, "depth": 2237.781911764706, "density": 1.508003989042254}, {"pressure": 5045.762391263815, "depth": 2247.736470588235, "density": 1.5082663071099076}, {"pressure": 5048.314407167791, "depth": 2257.6910294117642, "density": 1.5084900555417124}, {"pressure": 5050.866423071769, "depth": 2267.645588235294, "density": 1.5087136985704293}, {"pressure": 5053.419158982646, "depth": 2277.6001470588235, "density": 1.5089164787705638}, {"pressure": 5055.9718948935215, "depth": 2287.554705882353, "density": 1.5091191469887695}, {"pressure": 5058.52529850151, "depth": 2297.5092647058827, "density": 1.5093107825991463}, {"pressure": 5061.0787021094975, "depth": 2307.463823529412, "density": 1.509502302733107}, {"pressure": 5063.632746241238, "depth": 2317.418382352941, "density": 1.5096882541649506}, {"pressure": 5066.18679037298, "depth": 2327.3729411764707, "density": 1.5098740883400754}, {"pressure": 5068.74146182775, "depth": 2337.3275000000003, "density": 1.5100573919076454}, {"pressure": 5071.29613328252, "depth": 2347.2820588235295, "density": 1.5102405773910748}, {"pressure": 5073.8514266272905, "depth": 2357.2366176470587, "density": 1.51042292057705}, {"pressure": 5076.406719972062, "depth": 2367.1911764705883, "density": 1.5106051453807312}, {"pressure": 5078.962634087859, "depth": 2377.145735294118, "density": 1.5107874669336863}, {"pressure": 5081.518548203656, "depth": 2387.100294117647, "density": 1.5109696701003172}, {"pressure": 5084.075084381222, "depth": 2397.0548529411763, "density": 1.511152492748988}, {"pressure": 5086.631620558787, "depth": 2407.009411764706, "density": 1.5113351971707882}, {"pressure": 5089.188781362533, "depth": 2416.9639705882355, "density": 1.5115187800752494}, {"pressure": 5091.745942166278, "depth": 2426.9185294117647, "density": 1.5117022449930524}, {"pressure": 5094.303730878044, "depth": 2436.873088235294, "density": 1.51188677405555}, {"pressure": 5096.861519589811, "depth": 2446.8276470588235, "density": 1.5120711854293125}, {"pressure": 5099.41994000317, "depth": 2456.782205882353, "density": 1.5122567714650572}, {"pressure": 5101.9783604165295, "depth": 2466.7367647058823, "density": 1.5124422401441127}, {"pressure": 5104.53741659274, "depth": 2476.6913235294114, "density": 1.5126289403913622}, {"pressure": 5107.096472768951, "depth": 2486.645882352941, "density": 1.5128155236312815}, {"pressure": 5109.656168918095, "depth": 2496.6004411764707, "density": 1.513003372022366}, {"pressure": 5112.215865067239, "depth": 2506.5550000000003, "density": 1.5131911037654766}, {"pressure": 5114.776205506381, "depth": 2516.5095588235295, "density": 1.513380370620492}, {"pressure": 5117.336545945522, "depth": 2526.4641176470586, "density": 1.513569521270833}, {"pressure": 5119.897539736911, "depth": 2536.4186764705883, "density": 1.5137624984491638}, {"pressure": 5122.458533528302, "depth": 2546.373235294118, "density": 1.5139553605819402}, {"pressure": 5125.020193514798, "depth": 2556.3277941176475, "density": 1.514151561324434}, {"pressure": 5127.581853501294, "depth": 2566.2823529411767, "density": 1.5143476480262832}, {"pressure": 5130.144189284979, "depth": 2576.236911764706, "density": 1.5145461784151344}, {"pressure": 5132.706525068665, "depth": 2586.1914705882355, "density": 1.5147445954871235}, {"pressure": 5135.269543972577, "depth": 2596.146029411765, "density": 1.514944961649926}, {"pressure": 5137.83256287649, "depth": 2606.1005882352943, "density": 1.5151452150640532}, {"pressure": 5140.39627096338, "depth": 2616.0551470588234, "density": 1.5153471438609283}, {"pressure": 5142.959979050271, "depth": 2626.009705882353, "density": 1.5155489603909833}, {"pressure": 5145.524381687697, "depth": 2635.9642647058827, "density": 1.5157523021736168}, {"pressure": 5148.088784325124, "depth": 2645.918823529412, "density": 1.515955532123698}, {"pressure": 5150.653886501163, "depth": 2655.873382352941, "density": 1.5161602059369559}, {"pressure": 5153.218988677202, "depth": 2665.8279411764706, "density": 1.5163647683258963}, {"pressure": 5155.784795175887, "depth": 2675.7825000000003, "density": 1.5165708027233806}, {"pressure": 5158.3506016745705, "depth": 2685.7370588235294, "density": 1.5167767261130338}, {"pressure": 5160.917120036294, "depth": 2695.6916176470586, "density": 1.5169860512285287}, {"pressure": 5163.483638398019, "depth": 2705.646176470588, "density": 1.5171952663553443}, {"pressure": 5166.050881817626, "depth": 2715.600735294118, "density": 1.5174081900549072}, {"pressure": 5168.618125237233, "depth": 2725.5552941176475, "density": 1.5176210048793901}, {"pressure": 5171.18610428769, "depth": 2735.5098529411766, "density": 1.5178364861099407}, {"pressure": 5173.754083338149, "depth": 2745.464411764706, "density": 1.5180518592518741}, {"pressure": 5176.322805936319, "depth": 2755.4189705882354, "density": 1.5182693213214105}, {"pressure": 5178.891528534491, "depth": 2765.373529411765, "density": 1.5184866759073046}, {"pressure": 5181.461001133179, "depth": 2775.3280882352947, "density": 1.5187115006175063}, {"pressure": 5184.030473731867, "depth": 2785.282647058824, "density": 1.5189405636462334}, {"pressure": 5186.60070194763, "depth": 2795.237205882353, "density": 1.5191711571178876}, {"pressure": 5189.170930163395, "depth": 2805.1917647058826, "density": 1.5194016395130547}, {"pressure": 5191.741919144077, "depth": 2815.1463235294123, "density": 1.5196335663080176}, {"pressure": 5194.312908124758, "depth": 2825.1008823529414, "density": 1.5198653824603012}, {"pressure": 5196.884662820176, "depth": 2835.0554411764706, "density": 1.5200986046424312}, {"pressure": 5199.456417515595, "depth": 2845.01, "density": 1.5203317166022112}, {"pressure": 5199.482270846643, "depth": 2845.11, "density": 1.5203534301134813}, {"pressure": 5199.50812417769, "depth": 2845.21, "density": 1.5203621832923566}, {"pressure": 5201.932439177142, "depth": 2854.576666666667, "density": 1.5217758940314383}, {"pressure": 5204.356754176593, "depth": 2863.9433333333336, "density": 1.5231898847665475}, {"pressure": 5206.784984546264, "depth": 2873.3100000000004, "density": 1.5242227277227953}, {"pressure": 5209.213214915936, "depth": 2882.6766666666667, "density": 1.5252646064798905}, {"pressure": 5211.644349033106, "depth": 2892.0433333333335, "density": 1.5260575374186596}, {"pressure": 5214.0754831502745, "depth": 2901.4100000000003, "density": 1.5268505457089185}, {"pressure": 5214.101436896916, "depth": 2901.51, "density": 1.5268227689383607}, {"pressure": 5214.127390643556, "depth": 2901.61, "density": 1.5268344035782528}, {"pressure": 5216.232696003266, "depth": 2909.7266666666665, "density": 1.5261652211295418}, {"pressure": 5218.338001362975, "depth": 2917.8433333333332, "density": 1.5255191177220873}, {"pressure": 5220.441941000252, "depth": 2925.96, "density": 1.525194102746649}, {"pressure": 5222.54588063753, "depth": 2934.076666666667, "density": 1.5248688725818653}, {"pressure": 5224.649177319465, "depth": 2942.1933333333336, "density": 1.5247428838738895}, {"pressure": 5226.752474001399, "depth": 2950.31, "density": 1.5246167347717094}, {"pressure": 5226.778399844475, "depth": 2950.41, "density": 1.5246457966715115}, {"pressure": 5226.804325687553, "depth": 2950.5099999999998, "density": 1.524641338485187}, {"pressure": 5228.94462885436, "depth": 2958.758333333333, "density": 1.525710933472498}, {"pressure": 5231.084932021168, "depth": 2967.0066666666667, "density": 1.5267806965847766}, {"pressure": 5233.2279079520185, "depth": 2975.255, "density": 1.5276047403209652}, {"pressure": 5235.37088388287, "depth": 2983.503333333333, "density": 1.5284288835734072}, {"pressure": 5237.515947247228, "depth": 2991.7516666666666, "density": 1.5290866958994676}, {"pressure": 5239.661010611584, "depth": 3000.0, "density": 8.721200326404945}, {"pressure": 5242.994274900973, "depth": 3002.605, "density": 8.721127486316536}, {"pressure": 5246.327539190363, "depth": 3005.21, "density": 8.721054654119916}, {"pressure": 5246.475866726519, "depth": 3005.31, "density": 8.72274752199452}, {"pressure": 5246.624194262675, "depth": 3005.41, "density": 8.722757315047065}, {"pressure": 5258.951851382301, "depth": 3013.7212499999996, "density": 8.723571180181894}, {"pressure": 5271.279508501929, "depth": 3022.0325, "density": 8.724384936138152}, {"pressure": 5283.607320784573, "depth": 3030.34375, "density": 8.725198586301099}, {"pressure": 5295.935133067216, "depth": 3038.6549999999997, "density": 8.726007514385858}, {"pressure": 5308.263104071475, "depth": 3046.96625, "density": 8.726028642204136}, {"pressure": 5320.591075075734, "depth": 3055.2775, "density": 8.726050540790824}, {"pressure": 5332.919208483563, "depth": 3063.58875, "density": 8.725976523229201}, {"pressure": 5345.247341891393, "depth": 3071.9, "density": 8.72578069268245}, {"pressure": 5345.3956875780095, "depth": 3072.0, "density": 8.717082422296206}, {"pressure": 5345.544033264624, "depth": 3072.1, "density": 8.717080069556426}, {"pressure": 5360.301292384191, "depth": 3082.0476190476193, "density": 8.716846104260698}, {"pressure": 5375.058551503756, "depth": 3091.995238095238, "density": 8.716612272972464}, {"pressure": 5389.816044556525, "depth": 3101.942857142857, "density": 8.716378580794135}, {"pressure": 5404.573537609294, "depth": 3111.890476190476, "density": 8.716145022625426}, {"pressure": 5419.331269471617, "depth": 3121.838095238095, "density": 8.716260961806826}, {"pressure": 5434.089001333939, "depth": 3131.785714285714, "density": 8.716289060739655}, {"pressure": 5448.846976902719, "depth": 3141.7333333333336, "density": 8.716318407049807}, {"pressure": 5463.604952471498, "depth": 3151.6809523809525, "density": 8.716435997148754}, {"pressure": 5478.36317679096, "depth": 3161.6285714285714, "density": 8.716555120696567}, {"pressure": 5493.121401110422, "depth": 3171.5761904761903, "density": 8.716585832017293}, {"pressure": 5507.879879090832, "depth": 3181.523809523809, "density": 8.716706552943513}, {"pressure": 5522.638357071242, "depth": 3191.4714285714285, "density": 8.71673859438927}, {"pressure": 5537.397093609536, "depth": 3201.419047619048, "density": 8.716860915323325}, {"pressure": 5552.155830147827, "depth": 3211.366666666667, "density": 8.716894287165653}, {"pressure": 5566.914830145714, "depth": 3221.3142857142857, "density": 8.717018210731755}, {"pressure": 5581.673830143601, "depth": 3231.2619047619046, "density": 8.717052913183332}, {"pressure": 5596.433098507482, "depth": 3241.2095238095235, "density": 8.717088888019381}, {"pressure": 5611.192366871363, "depth": 3251.157142857143, "density": 8.717214475226111}, {"pressure": 5625.951909711901, "depth": 3261.104761904762, "density": 8.717343852630139}, {"pressure": 5640.711452552438, "depth": 3271.052380952381, "density": 8.717383304725129}, {"pressure": 5655.471289860757, "depth": 3281.0, "density": 8.717428239071118}, {"pressure": 5670.231127169077, "depth": 3290.947619047619, "density": 8.717563660803558}, {"pressure": 5684.991268137924, "depth": 3300.895238095238, "density": 8.717609894460235}, {"pressure": 5699.7514091067715, "depth": 3310.842857142857, "density": 8.71774691888168}, {"pressure": 5714.511858787096, "depth": 3320.7904761904765, "density": 8.71779445114444}, {"pressure": 5729.272308467418, "depth": 3330.7380952380954, "density": 8.717933081062785}, {"pressure": 5744.033071700101, "depth": 3340.6857142857143, "density": 8.717981965200632}, {"pressure": 5758.793834932783, "depth": 3350.633333333333, "density": 8.718122205977979}, {"pressure": 5773.554916575304, "depth": 3360.580952380952, "density": 8.718264002833141}, {"pressure": 5788.315998217824, "depth": 3370.5285714285715, "density": 8.718314259289105}, {"pressure": 5803.077403183785, "depth": 3380.476190476191, "density": 8.718457669922438}, {"pressure": 5817.838808149746, "depth": 3390.4238095238097, "density": 8.718509243100723}, {"pressure": 5832.600542338111, "depth": 3400.3714285714286, "density": 8.718563755878025}, {"pressure": 5847.362276526477, "depth": 3410.3190476190475, "density": 8.718710651068104}, {"pressure": 5862.124356204956, "depth": 3420.2666666666664, "density": 8.718861866442818}, {"pressure": 5876.886435883435, "depth": 3430.214285714286, "density": 8.718920294346892}, {"pressure": 5891.648868460986, "depth": 3440.161904761905, "density": 8.718979962450291}, {"pressure": 5906.4113010385345, "depth": 3450.109523809524, "density": 8.719132838741817}, {"pressure": 5921.174091291811, "depth": 3460.057142857143, "density": 8.719287266335144}, {"pressure": 5935.936881545089, "depth": 3470.004761904762, "density": 8.719347787440373}, {"pressure": 5950.700031623153, "depth": 3479.9523809523807, "density": 8.719502408236156}, {"pressure": 5965.46318170122, "depth": 3489.9, "density": 8.719563224063444}, {"pressure": 5965.611664962304, "depth": 3490.0, "density": 8.72384917696526}, {"pressure": 5965.760148223389, "depth": 3490.1, "density": 8.724640271703427}, {"pressure": 5980.555585164963, "depth": 3500.06338028169, "density": 8.7246060964745}, {"pressure": 5995.351022106537, "depth": 3510.0267605633803, "density": 8.724688183826375}, {"pressure": 6010.146541235034, "depth": 3519.9901408450705, "density": 8.724772376972796}, {"pressure": 6024.942060363532, "depth": 3529.9535211267603, "density": 8.724739988938364}, {"pressure": 6039.737418695743, "depth": 3539.9169014084505, "density": 8.724709280719752}, {"pressure": 6054.532777027955, "depth": 3549.8802816901407, "density": 8.724795726477518}, {"pressure": 6069.32540976033, "depth": 3559.843661971831, "density": 8.724884242758476}, {"pressure": 6084.118042492706, "depth": 3569.807042253521, "density": 8.72485533545026}, {"pressure": 6098.898038446542, "depth": 3579.7704225352113, "density": 8.72482807408172}, {"pressure": 6113.67803440038, "depth": 3589.7338028169015, "density": 8.724918644389552}, {"pressure": 6128.430341867595, "depth": 3599.6971830985913, "density": 8.725010881148144}, {"pressure": 6143.18264933481, "depth": 3609.6605633802815, "density": 8.724985398801486}, {"pressure": 6157.89931577206, "depth": 3619.6239436619717, "density": 8.724961287125781}, {"pressure": 6172.615982209308, "depth": 3629.587323943662, "density": 8.725055201498158}, {"pressure": 6187.289101215702, "depth": 3639.550704225352, "density": 8.72503246801654}, {"pressure": 6201.962220222096, "depth": 3649.5140845070423, "density": 8.725127858836586}, {"pressure": 6216.58390803029, "depth": 3659.4774647887325, "density": 8.725224529275165}, {"pressure": 6231.2055958384835, "depth": 3669.4408450704223, "density": 8.725203243084977}, {"pressure": 6245.7679956093625, "depth": 3679.4042253521125, "density": 8.725301131167708}, {"pressure": 6260.33039538024, "depth": 3689.3676056338027, "density": 8.725281199882321}, {"pressure": 6274.825681754691, "depth": 3699.330985915493, "density": 8.72526243324629}, {"pressure": 6289.320968129142, "depth": 3709.294366197183, "density": 8.725361466908288}, {"pressure": 6303.741351399518, "depth": 3719.257746478873, "density": 8.725343868673672}, {"pressure": 6318.161734669894, "depth": 3729.221126760563, "density": 8.72544384620073}, {"pressure": 6332.499464892692, "depth": 3739.1845070422532, "density": 8.725544566950703}, {"pressure": 6346.837195115491, "depth": 3749.1478873239435, "density": 8.725528111576253}, {"pressure": 6361.084566480935, "depth": 3759.1112676056337, "density": 8.725512536314124}, {"pressure": 6375.3319378463775, "depth": 3769.074647887324, "density": 8.725613985661}, {"pressure": 6389.4812923632635, "depth": 3779.038028169014, "density": 8.725715895316144}, {"pressure": 6403.630646880148, "depth": 3789.001408450704, "density": 8.72570133893207}, {"pressure": 6417.674377913056, "depth": 3798.964788732394, "density": 8.725687760567133}, {"pressure": 6431.718108945963, "depth": 3808.9281690140842, "density": 8.72579013170727}, {"pressure": 6445.648666831363, "depth": 3818.8915492957744, "density": 8.725777317734948}, {"pressure": 6459.579224716764, "depth": 3828.8549295774646, "density": 8.725879959384283}, {"pressure": 6473.389122249872, "depth": 3838.818309859155, "density": 8.725869264281345}, {"pressure": 6487.199019782982, "depth": 3848.781690140845, "density": 8.725973761344733}, {"pressure": 6500.880841698801, "depth": 3858.745070422535, "density": 8.72608060417617}, {"pressure": 6514.562663614622, "depth": 3868.708450704225, "density": 8.726073147861824}, {"pressure": 6528.10906332489, "depth": 3878.671830985915, "density": 8.726185206260807}, {"pressure": 6541.655463035158, "depth": 3888.6352112676054, "density": 8.726182997183383}, {"pressure": 6555.059121165001, "depth": 3898.5985915492956, "density": 8.726181238514418}, {"pressure": 6568.462779294843, "depth": 3908.561971830986, "density": 8.72629217272273}, {"pressure": 6581.716031182935, "depth": 3918.525352112676, "density": 8.726290849625327}, {"pressure": 6594.969283071025, "depth": 3928.488732394366, "density": 8.726401282766368}, {"pressure": 6608.138688104985, "depth": 3938.452112676056, "density": 8.72651225184041}, {"pressure": 6621.308093138945, "depth": 3948.415492957746, "density": 8.726511897602899}, {"pressure": 6634.476406276574, "depth": 3958.3788732394364, "density": 8.7265129808163}, {"pressure": 6647.644719414205, "depth": 3968.3422535211266, "density": 8.726625953156473}, {"pressure": 6660.813202984031, "depth": 3978.305633802817, "density": 8.726740854854686}, {"pressure": 6673.981686553855, "depth": 3988.269014084507, "density": 8.726743496680704}, {"pressure": 6687.150345616624, "depth": 3998.232394366197, "density": 8.72674768861073}, {"pressure": 6700.3190046793925, "depth": 4008.195774647887, "density": 8.726864620460704}, {"pressure": 6713.487843950564, "depth": 4018.159154929577, "density": 8.726983485987782}, {"pressure": 6726.656683221736, "depth": 4028.1225352112674, "density": 8.72698923153862}, {"pressure": 6739.8257079898485, "depth": 4038.0859154929576, "density": 8.727110088202766}, {"pressure": 6752.99473275796, "depth": 4048.049295774648, "density": 8.727117334714555}, {"pressure": 6766.163948255738, "depth": 4058.012676056338, "density": 8.727240186084735}, {"pressure": 6779.333163753517, "depth": 4067.976056338028, "density": 8.727248931492749}, {"pressure": 6792.502575216455, "depth": 4077.939436619718, "density": 8.727373781131783}, {"pressure": 6805.671986679392, "depth": 4087.902816901408, "density": 8.727384023163635}, {"pressure": 6818.841599295333, "depth": 4097.866197183099, "density": 8.727395751799103}, {"pressure": 6832.011211911274, "depth": 4107.829577464789, "density": 8.727522653560845}, {"pressure": 6845.181030792246, "depth": 4117.792957746478, "density": 8.727535888594325}, {"pressure": 6858.350849673221, "depth": 4127.756338028169, "density": 8.72766479597274}, {"pressure": 6871.520880068529, "depth": 4137.71971830986, "density": 8.727795663608738}, {"pressure": 6884.690910463835, "depth": 4147.683098591549, "density": 8.727810413813689}, {"pressure": 6897.861157810821, "depth": 4157.646478873239, "density": 8.727826550012594}, {"pressure": 6911.031405157806, "depth": 4167.609859154929, "density": 8.727959474502528}, {"pressure": 6924.201874779735, "depth": 4177.573239436619, "density": 8.727977093298799}, {"pressure": 6937.372344401663, "depth": 4187.536619718309, "density": 8.728112033261587}, {"pressure": 6950.5430415473065, "depth": 4197.5, "density": 8.728248940405871}, {"pressure": 6963.713738692947, "depth": 4207.46338028169, "density": 8.728268042457175}, {"pressure": 6976.884668564841, "depth": 4217.4267605633795, "density": 8.72828857465436}, {"pressure": 6990.0555984367375, "depth": 4227.39014084507, "density": 8.728427542207557}, {"pressure": 7003.226765709208, "depth": 4237.353521126761, "density": 8.728449642757285}, {"pressure": 7016.397932981677, "depth": 4247.316901408451, "density": 8.728590636091926}, {"pressure": 7029.569342777187, "depth": 4257.28028169014, "density": 8.728733615704126}, {"pressure": 7042.740752572698, "depth": 4267.243661971831, "density": 8.728757229558063}, {"pressure": 7055.912410181042, "depth": 4277.207042253522, "density": 8.728902242969488}, {"pressure": 7069.084067789386, "depth": 4287.170422535211, "density": 8.728927290180154}, {"pressure": 7082.255978791232, "depth": 4297.133802816901, "density": 8.729074541900276}, {"pressure": 7095.427889793079, "depth": 4307.097183098591, "density": 8.72910118662829}, {"pressure": 7108.600064500591, "depth": 4317.060563380281, "density": 8.72913206116744}, {"pressure": 7121.772239208105, "depth": 4327.023943661971, "density": 8.729283911000964}, {"pressure": 7134.944684626231, "depth": 4336.987323943662, "density": 8.729437161087489}, {"pressure": 7148.117130044356, "depth": 4346.950704225352, "density": 8.729468270933074}, {"pressure": 7161.289850353995, "depth": 4356.9140845070415, "density": 8.729500776640107}, {"pressure": 7174.462570663635, "depth": 4366.877464788732, "density": 8.729656113777885}, {"pressure": 7187.635571109941, "depth": 4376.840845070423, "density": 8.729690052759269}, {"pressure": 7200.808571556245, "depth": 4386.804225352113, "density": 8.729847437392609}, {"pressure": 7213.981857382019, "depth": 4396.767605633802, "density": 8.730006831042772}, {"pressure": 7227.155143207795, "depth": 4406.730985915493, "density": 8.730042239308371}, {"pressure": 7240.328719689525, "depth": 4416.694366197184, "density": 8.730203686134821}, {"pressure": 7253.502296171254, "depth": 4426.657746478873, "density": 8.730240477037645}, {"pressure": 7266.676168749623, "depth": 4436.621126760563, "density": 8.730278613013123}, {"pressure": 7279.850041327992, "depth": 4446.584507042253, "density": 8.730442158073812}, {"pressure": 7293.024214951294, "depth": 4456.547887323943, "density": 8.730607720994259}, {"pressure": 7306.198388574598, "depth": 4466.511267605633, "density": 8.730647427103156}, {"pressure": 7319.372868110727, "depth": 4476.474647887324, "density": 8.730688499587146}, {"pressure": 7332.547347646855, "depth": 4486.438028169014, "density": 8.730856167837983}, {"pressure": 7345.722138327035, "depth": 4496.4014084507035, "density": 8.731025864125632}, {"pressure": 7358.896929007217, "depth": 4506.364788732394, "density": 8.731068367427525}, {"pressure": 7372.07203606498, "depth": 4516.328169014085, "density": 8.7311122134001}, {"pressure": 7385.24714312274, "depth": 4526.2915492957745, "density": 8.731284021059075}, {"pressure": 7398.422571785686, "depth": 4536.254929577464, "density": 8.731457863993754}, {"pressure": 7411.598000448635, "depth": 4546.218309859155, "density": 8.73150312341065}, {"pressure": 7424.773756016721, "depth": 4556.181690140846, "density": 8.731549644531512}, {"pressure": 7437.949511584805, "depth": 4566.145070422535, "density": 8.731725603433903}, {"pressure": 7451.125599762805, "depth": 4576.108450704225, "density": 8.731903605922849}, {"pressure": 7464.301687940804, "depth": 4586.071830985915, "density": 8.731951426519148}, {"pressure": 7477.478120013056, "depth": 4596.035211267605, "density": 8.732135923328487}, {"pressure": 7490.654552085309, "depth": 4605.998591549295, "density": 8.732189173134328}, {"pressure": 7503.831340445799, "depth": 4615.961971830986, "density": 8.732244174632058}, {"pressure": 7517.0081288062875, "depth": 4625.925352112676, "density": 8.732431112261652}, {"pressure": 7530.185278703584, "depth": 4635.888732394365, "density": 8.732620085554515}, {"pressure": 7543.362428600883, "depth": 4645.852112676056, "density": 8.73267641745359}, {"pressure": 7556.539945132315, "depth": 4655.815492957747, "density": 8.732867466221743}, {"pressure": 7569.717461663746, "depth": 4665.7788732394365, "density": 8.732925079719374}, {"pressure": 7582.895349890977, "depth": 4675.742253521126, "density": 8.733118204027909}, {"pressure": 7596.073238118206, "depth": 4685.705633802816, "density": 8.733177095632351}, {"pressure": 7609.251502830565, "depth": 4695.669014084507, "density": 8.733237185861322}, {"pressure": 7622.429767542924, "depth": 4705.632394366197, "density": 8.733432418010837}, {"pressure": 7635.608413802892, "depth": 4715.595774647887, "density": 8.733629700080474}, {"pressure": 7648.787060062859, "depth": 4725.559154929577, "density": 8.733691056877658}, {"pressure": 7661.966092938895, "depth": 4735.522535211267, "density": 8.733890427516247}, {"pressure": 7675.145125814933, "depth": 4745.485915492957, "density": 8.733953011419404}, {"pressure": 7688.324550352026, "depth": 4755.449295774648, "density": 8.734016772326454}, {"pressure": 7701.503974889118, "depth": 4765.412676056338, "density": 8.734218268717163}, {"pressure": 7714.683796727436, "depth": 4775.376056338027, "density": 8.73442308896146}, {"pressure": 7727.863618565755, "depth": 4785.339436619718, "density": 8.734488624137557}, {"pressure": 7741.043846666993, "depth": 4795.302816901409, "density": 8.734556216237593}, {"pressure": 7754.224074768229, "depth": 4805.2661971830985, "density": 8.734763729817525}, {"pressure": 7767.404714476446, "depth": 4815.229577464788, "density": 8.734973306787397}, {"pressure": 7780.5853541846645, "depth": 4825.192957746478, "density": 8.735042083558989}, {"pressure": 7793.76641062948, "depth": 4835.156338028169, "density": 8.735253756708573}, {"pressure": 7806.947467074295, "depth": 4845.119718309859, "density": 8.735323567613218}, {"pressure": 7820.128945394243, "depth": 4855.083098591549, "density": 8.735394453468583}, {"pressure": 7833.310423714191, "depth": 4865.046478873239, "density": 8.735608261020651}, {"pressure": 7846.492328801714, "depth": 4875.009859154929, "density": 8.735824141517014}, {"pressure": 7859.67423388924, "depth": 4884.973239436619, "density": 8.735896151396032}, {"pressure": 7872.856570604615, "depth": 4894.93661971831, "density": 8.735969197863968}, {"pressure": 7886.0389073199885, "depth": 4904.9, "density": 8.73618721760049}, {"pressure": 7886.171172400873, "depth": 4905.0, "density": 8.73278057580183}, {"pressure": 7886.303437481758, "depth": 4905.1, "density": 8.732300556053032}, {"pressure": 7899.046378499045, "depth": 4914.734807692308, "density": 8.732564644232736}, {"pressure": 7911.7893195163315, "depth": 4924.369615384616, "density": 8.7327482969646}, {"pressure": 7924.532899154556, "depth": 4934.004423076924, "density": 8.732932333302418}, {"pressure": 7937.276478792781, "depth": 4943.639230769231, "density": 8.733197360878963}, {"pressure": 7950.020698788756, "depth": 4953.274038461539, "density": 8.73338171704157}, {"pressure": 7962.764918784732, "depth": 4962.908846153847, "density": 8.733647674061963}, {"pressure": 7975.509780963339, "depth": 4972.5436538461545, "density": 8.733832330637593}, {"pressure": 7988.254643141947, "depth": 4982.178461538462, "density": 8.734099217984218}, {"pressure": 8001.000149301447, "depth": 4991.81326923077, "density": 8.73436702551569}, {"pressure": 8013.745655460945, "depth": 5001.448076923077, "density": 8.734551972778766}, {"pressure": 8026.4918073710605, "depth": 5011.0828846153845, "density": 8.734737166471525}, {"pressure": 8039.237959281176, "depth": 5020.717692307692, "density": 8.73500591711064}, {"pressure": 8051.98475868098, "depth": 5030.3525, "density": 8.735275589930158}, {"pressure": 8064.7315580807835, "depth": 5039.987307692308, "density": 8.73546102802918}, {"pressure": 8077.477936263619, "depth": 5049.622115384615, "density": 8.735929431482745}, {"pressure": 8090.224314446456, "depth": 5059.256923076923, "density": 8.736196860791608}, {"pressure": 8102.971171469955, "depth": 5068.891730769231, "density": 8.736468731407468}, {"pressure": 8115.718028493453, "depth": 5078.526538461539, "density": 8.736643913324837}, {"pressure": 8128.465584728031, "depth": 5088.161346153846, "density": 8.736916711908385}, {"pressure": 8141.213140962609, "depth": 5097.796153846154, "density": 8.737092053460453}, {"pressure": 8153.961398004837, "depth": 5107.430961538462, "density": 8.737267512663326}, {"pressure": 8166.709655047065, "depth": 5117.06576923077, "density": 8.737541251518808}, {"pressure": 8179.458614442162, "depth": 5126.700576923077, "density": 8.737716806870687}, {"pressure": 8192.20757383726, "depth": 5136.335384615385, "density": 8.73799147531111}, {"pressure": 8204.957237077224, "depth": 5145.970192307692, "density": 8.738267062960588}, {"pressure": 8217.70690031719, "depth": 5155.605, "density": 8.738442689778045}, {"pressure": 8230.4572688697, "depth": 5165.239807692307, "density": 8.738618273752188}, {"pressure": 8243.207637422212, "depth": 5174.874615384615, "density": 8.738894804599514}, {"pressure": 8255.958713100084, "depth": 5184.509423076923, "density": 8.739070263198718}, {"pressure": 8268.709788777956, "depth": 5194.1442307692305, "density": 8.739347727403437}, {"pressure": 8281.461572991486, "depth": 5203.779038461538, "density": 8.739626113469658}, {"pressure": 8294.213357205013, "depth": 5213.413846153846, "density": 8.73980152600182}, {"pressure": 8306.965849832473, "depth": 5223.048653846154, "density": 8.740080014755833}, {"pressure": 8319.718342459935, "depth": 5232.683461538461, "density": 8.74025410954473}, {"pressure": 8332.471544883427, "depth": 5242.318269230769, "density": 8.740429981947093}, {"pressure": 8345.224747306916, "depth": 5251.953076923077, "density": 8.740711183464683}, {"pressure": 8357.97866559712, "depth": 5261.587884615385, "density": 8.740993956311991}, {"pressure": 8370.732583887322, "depth": 5271.222692307692, "density": 8.741170191484253}, {"pressure": 8383.487219215642, "depth": 5280.8575, "density": 8.741346106118366}, {"pressure": 8396.241854543963, "depth": 5290.492307692308, "density": 8.74162982224124}, {"pressure": 8408.997207650871, "depth": 5300.1271153846155, "density": 8.741914462345397}, {"pressure": 8421.752560757777, "depth": 5309.761923076923, "density": 8.742089996001713}, {"pressure": 8434.508632241985, "depth": 5319.396730769231, "density": 8.742265036919177}, {"pressure": 8447.26470372619, "depth": 5329.031538461538, "density": 8.742550622352049}, {"pressure": 8460.021494024259, "depth": 5338.666346153846, "density": 8.742725076197909}, {"pressure": 8472.778284322329, "depth": 5348.301153846153, "density": 8.743011598020269}, {"pressure": 8485.535793683848, "depth": 5357.935961538461, "density": 8.743334983863699}, {"pressure": 8498.293303045368, "depth": 5367.570769230769, "density": 8.743658359446009}, {"pressure": 8511.051531502355, "depth": 5377.2055769230765, "density": 8.743981740349792}, {"pressure": 8523.809759959342, "depth": 5386.840384615384, "density": 8.744305110991878}, {"pressure": 8536.568707287972, "depth": 5396.475192307692, "density": 8.744628486949427}, {"pressure": 8549.3276546166, "depth": 5406.11, "density": 8.74494897128692}, {"pressure": 8549.460085456943, "depth": 5406.21, "density": 8.74393545285845}, {"pressure": 8549.592516297289, "depth": 5406.31, "density": 8.743938456544807}, {"pressure": 8561.044950500944, "depth": 5414.9575, "density": 8.744198209526507}, {"pressure": 8572.497384704599, "depth": 5423.605, "density": 8.744455223158}, {"pressure": 8583.950710014407, "depth": 5432.2525, "density": 8.744707498087987}, {"pressure": 8595.404035324216, "depth": 5440.9, "density": 8.744955108401266}, {"pressure": 8595.536487568532, "depth": 5441.0, "density": 8.74457155573372}, {"pressure": 8595.66893981285, "depth": 5441.1, "density": 8.7445764354215}, {"pressure": 8607.399008246139, "depth": 5449.955714285715, "density": 8.745008558853193}, {"pressure": 8619.129076679428, "depth": 5458.811428571429, "density": 8.745440646492147}, {"pressure": 8630.860071465491, "depth": 5467.667142857143, "density": 8.745872718417761}, {"pressure": 8642.591066251556, "depth": 5476.522857142857, "density": 8.746304754547806}, {"pressure": 8654.322983616139, "depth": 5485.378571428571, "density": 8.746736774877059}, {"pressure": 8666.05490098072, "depth": 5494.234285714286, "density": 8.747168759407927}, {"pressure": 8677.787736057287, "depth": 5503.09, "density": 8.747600728026917}, {"pressure": 8689.520571133851, "depth": 5511.9457142857145, "density": 8.748032660844723}, {"pressure": 8701.25431752613, "depth": 5520.801428571429, "density": 8.748464577606466}, {"pressure": 8712.988063918408, "depth": 5529.657142857143, "density": 8.748896458564243}, {"pressure": 8724.722712953142, "depth": 5538.512857142858, "density": 8.7493283232725}, {"pressure": 8736.457361987876, "depth": 5547.368571428571, "density": 8.74976015217404}, {"pressure": 8748.192901284132, "depth": 5556.2242857142855, "density": 8.749990568336383}, {"pressure": 8759.92844058039, "depth": 5565.08, "density": 8.750395338119432}, {"pressure": 8760.04770803896, "depth": 5565.17, "density": 8.750395338119432}, {"pressure": 9436.274674555762, "depth": 5565.1900000000005, "density": 7.366746745194428}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978.0, "density": 6.042353224585787}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 5, "stage": "PRODUCTION"}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PA", "geopressures": {}, "type": "THERMAL", "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4wJoVX5gYp", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5204.903310133675, "depth": 2072.0, "density": 9.221596295712184}, {"pressure": 5225.914920195607, "depth": 2085.37, "density": 9.221596295712184}, {"pressure": 5246.920298925266, "depth": 2098.7400000000002, "density": 9.225071793293836}, {"pressure": 5267.919817388084, "depth": 2112.11, "density": 9.228715049714353}, {"pressure": 5268.152074795892, "depth": 2112.31, "density": 6.813735572853778}, {"pressure": 5288.155475254602, "depth": 2130.84, "density": 6.342499424557418}, {"pressure": 5308.163630345304, "depth": 2149.37, "density": 6.344349825939567}, {"pressure": 5328.17749913082, "depth": 2167.9, "density": 6.345818628053981}, {"pressure": 5328.393548625588, "depth": 2168.1, "density": 6.338244027985599}, {"pressure": 5349.903826546931, "depth": 2188.0091176470587, "density": 6.347922979362616}, {"pressure": 5371.420242784362, "depth": 2207.9182352941175, "density": 6.3500538519946215}, {"pressure": 5392.942653681848, "depth": 2227.8273529411763, "density": 6.351503555975771}, {"pressure": 5414.471040954587, "depth": 2247.736470588235, "density": 6.353267250984126}, {"pressure": 5436.00539640149, "depth": 2267.645588235294, "density": 6.355028525759964}, {"pressure": 5457.545748087023, "depth": 2287.554705882353, "density": 6.356798082672593}, {"pressure": 5479.092136419495, "depth": 2307.463823529412, "density": 6.358579564527979}, {"pressure": 5500.644570281912, "depth": 2327.3729411764707, "density": 6.360683589575374}, {"pressure": 5522.203059028034, "depth": 2347.2820588235295, "density": 6.362150531586102}, {"pressure": 5543.767612744539, "depth": 2367.1911764705883, "density": 6.363940372006047}, {"pressure": 5565.338241954746, "depth": 2387.100294117647, "density": 6.365733317974395}, {"pressure": 5586.914958411493, "depth": 2407.009411764706, "density": 6.367529732336607}, {"pressure": 5608.497785675964, "depth": 2426.9185294117647, "density": 6.3696534727407785}, {"pressure": 5630.086738615918, "depth": 2446.8276470588235, "density": 6.37114085503894}, {"pressure": 5651.681828172065, "depth": 2466.7367647058823, "density": 6.372951838936635}, {"pressure": 5673.2830653592155, "depth": 2486.645882352941, "density": 6.374766073427462}, {"pressure": 5694.890461256057, "depth": 2506.5550000000003, "density": 6.3765835773629025}, {"pressure": 5716.504027008922, "depth": 2526.4641176470586, "density": 6.378404370705091}, {"pressure": 5738.123773888365, "depth": 2546.373235294118, "density": 6.380549411017668}, {"pressure": 5759.749713221329, "depth": 2566.2823529411767, "density": 6.3820559522299805}, {"pressure": 5781.381856347307, "depth": 2586.1914705882355, "density": 6.383886760756481}, {"pressure": 5803.020214635637, "depth": 2606.1005882352943, "density": 6.3857209245020545}, {"pressure": 5824.664799494427, "depth": 2626.009705882353, "density": 6.3875584549071664}, {"pressure": 5846.3156223729275, "depth": 2645.918823529412, "density": 6.389399364113959}, {"pressure": 5867.97269476432, "depth": 2665.8279411764706, "density": 6.391565140046089}, {"pressure": 5889.636028207555, "depth": 2685.7370588235294, "density": 6.393091371332687}, {"pressure": 5911.305638066002, "depth": 2705.646176470588, "density": 6.394943611480333}, {"pressure": 5932.981519605128, "depth": 2725.5552941176475, "density": 6.396794454414373}, {"pressure": 5954.663112822604, "depth": 2745.464411764706, "density": 6.398480034413925}, {"pressure": 5976.350081790118, "depth": 2765.373529411765, "density": 6.400066478221089}, {"pressure": 5998.04243763913, "depth": 2785.282647058824, "density": 6.4019782057490575}, {"pressure": 6019.740206063551, "depth": 2805.1917647058826, "density": 6.403253518431159}, {"pressure": 6041.443435706104, "depth": 2825.1008823529414, "density": 6.4048651848260185}, {"pressure": 6063.152140467356, "depth": 2845.01, "density": 6.406480953433795}, {"pressure": 6063.450894223064, "depth": 2845.21, "density": 8.764538931221663}, {"pressure": 6092.946963746648, "depth": 2863.9433333333336, "density": 9.251362501880491}, {"pressure": 6122.446945751108, "depth": 2882.6766666666667, "density": 9.252095061629518}, {"pressure": 6151.950804282797, "depth": 2901.4100000000003, "density": 9.253310858928563}, {"pressure": 6152.185291300629, "depth": 2901.61, "density": 6.913714213179486}, {"pressure": 6169.912452388689, "depth": 2917.8433333333332, "density": 6.415762704668609}, {"pressure": 6187.643156752726, "depth": 2934.076666666667, "density": 6.41744092193882}, {"pressure": 6205.377459394244, "depth": 2950.31, "density": 6.41874328041718}, {"pressure": 6205.676428953543, "depth": 2950.5099999999998, "density": 8.814944684566093}, {"pressure": 6231.665221595041, "depth": 2967.0066666666667, "density": 9.25620019089025}, {"pressure": 6257.657065854402, "depth": 2983.503333333333, "density": 9.256725159779979}, {"pressure": 6283.6519416739575, "depth": 3000.0, "density": 9.258366783031459}, {"pressure": 6293.072764357168, "depth": 3005.21, "density": 10.625862170601257}, {"pressure": 6293.343959037523, "depth": 3005.41, "density": 7.956038337573384}, {"pressure": 6314.2270333920005, "depth": 3022.0325, "density": 7.381286172738737}, {"pressure": 6335.112992666165, "depth": 3038.6549999999997, "density": 7.382305870194632}, {"pressure": 6356.001847954613, "depth": 3055.2775, "density": 7.383774294803495}, {"pressure": 6376.893610362978, "depth": 3071.9, "density": 7.384357033423913}, {"pressure": 6377.144995380677, "depth": 3072.1, "density": 7.374882264232811}, {"pressure": 6402.1539436441135, "depth": 3091.995238095238, "density": 7.3856202456658275}, {"pressure": 6427.1671110481975, "depth": 3111.890476190476, "density": 7.3868662385103185}, {"pressure": 6452.184516574215, "depth": 3131.785714285714, "density": 7.388117836891313}, {"pressure": 6477.206179225932, "depth": 3151.6809523809525, "density": 7.38937504744731}, {"pressure": 6502.232118027906, "depth": 3171.5761904761903, "density": 7.390637876318842}, {"pressure": 6527.2623310510035, "depth": 3191.4714285714285, "density": 7.391900135480146}, {"pressure": 6552.29636994852, "depth": 3211.366666666667, "density": 7.393029989293759}, {"pressure": 6577.333972606711, "depth": 3231.2619047619046, "density": 7.394082435910448}, {"pressure": 6602.375154292892, "depth": 3251.157142857143, "density": 7.395139391257394}, {"pressure": 6627.419930314664, "depth": 3271.052380952381, "density": 7.396573152974498}, {"pressure": 6652.468316014788, "depth": 3290.947619047619, "density": 7.397266874215108}, {"pressure": 6677.5203267700335, "depth": 3310.842857142857, "density": 7.39833742225331}, {"pressure": 6702.575977991001, "depth": 3330.7380952380954, "density": 7.399412521336158}, {"pressure": 6727.635287612156, "depth": 3350.633333333333, "density": 7.40049291680923}, {"pressure": 6752.698330221791, "depth": 3370.5285714285715, "density": 7.4015953396301954}, {"pressure": 6777.765158521497, "depth": 3390.4238095238097, "density": 7.402713326237876}, {"pressure": 6802.835788791863, "depth": 3410.3190476190475, "density": 7.403836120814401}, {"pressure": 6827.910237339442, "depth": 3430.214285714286, "density": 7.404963731028021}, {"pressure": 6852.988520503252, "depth": 3450.109523809524, "density": 7.406096166465854}, {"pressure": 6878.070654647511, "depth": 3470.004761904762, "density": 7.40723343456939}, {"pressure": 6903.1566561596, "depth": 3489.9, "density": 7.408375542179914}, {"pressure": 6903.408856795826, "depth": 3490.1, "density": 7.398810064969101}, {"pressure": 6928.538285756517, "depth": 3510.0267605633803, "density": 7.409639252422601}, {"pressure": 6953.671135559508, "depth": 3529.9535211267603, "density": 7.410275524324966}, {"pressure": 6978.807104296397, "depth": 3549.8802816901407, "density": 7.411567564541979}, {"pressure": 7003.942885545295, "depth": 3569.807042253521, "density": 7.412629820053773}, {"pressure": 7029.065662055096, "depth": 3589.7338028169015, "density": 7.415503516128659}, {"pressure": 7054.155952557671, "depth": 3609.6605633802815, "density": 7.419725341203044}, {"pressure": 7079.203450861506, "depth": 3629.587323943662, "density": 7.425408829219934}, {"pressure": 7104.197900946614, "depth": 3649.5140845070423, "density": 7.431460242695827}, {"pressure": 7129.1289824055775, "depth": 3669.4408450704223, "density": 7.439006679837478}, {"pressure": 7153.986026465995, "depth": 3689.3676056338027, "density": 7.446832796532614}, {"pressure": 7178.758822661325, "depth": 3709.294366197183, "density": 7.455855573043515}, {"pressure": 7203.437241996379, "depth": 3729.221126760563, "density": 7.466516660985715}, {"pressure": 7228.011200242978, "depth": 3749.1478873239435, "density": 7.477711991291931}, {"pressure": 7252.470663389621, "depth": 3769.074647887324, "density": 7.490263782182502}, {"pressure": 7276.805653079129, "depth": 3789.001408450704, "density": 7.503054046464378}, {"pressure": 7301.006252028492, "depth": 3808.9281690140842, "density": 7.5185107632898065}, {"pressure": 7325.062609430744, "depth": 3828.8549295774646, "density": 7.534739306142837}, {"pressure": 7348.964946335124, "depth": 3848.781690140845, "density": 7.551398425197208}, {"pressure": 7372.703561004983, "depth": 3868.708450704225, "density": 7.570191190495792}, {"pressure": 7396.2688342465335, "depth": 3888.6352112676054, "density": 7.590408663673067}, {"pressure": 7419.651182573266, "depth": 3908.561971830986, "density": 7.611717186655055}, {"pressure": 7442.840596034585, "depth": 3928.488732394366, "density": 7.634472255804324}, {"pressure": 7465.923498177873, "depth": 3948.415492957746, "density": 7.648329570562856}, {"pressure": 7489.007336852222, "depth": 3968.3422535211266, "density": 7.649071838135906}, {"pressure": 7512.0937581797625, "depth": 3988.269014084507, "density": 7.649927627334619}, {"pressure": 7535.182776022698, "depth": 4008.195774647887, "density": 7.650355957287016}, {"pressure": 7558.274404280535, "depth": 4028.1225352112674, "density": 7.651652998251294}, {"pressure": 7581.36865689085, "depth": 4048.049295774648, "density": 7.65252260494494}, {"pressure": 7604.465547828907, "depth": 4067.976056338028, "density": 7.652964642531968}, {"pressure": 7627.565091105071, "depth": 4087.902816901408, "density": 7.6542757225145035}, {"pressure": 7650.667300770744, "depth": 4107.829577464789, "density": 7.655159258619164}, {"pressure": 7673.772190921059, "depth": 4127.756338028169, "density": 7.6560474652937485}, {"pressure": 7696.8797756876675, "depth": 4147.683098591549, "density": 7.656507954574211}, {"pressure": 7719.990013896124, "depth": 4167.609859154929, "density": 7.65781960040066}, {"pressure": 7743.102635144979, "depth": 4187.536619718309, "density": 7.658609245808871}, {"pressure": 7766.21762652738, "depth": 4207.46338028169, "density": 7.65939461439529}, {"pressure": 7789.335000523068, "depth": 4227.39014084507, "density": 7.659751535029366}, {"pressure": 7812.454769657812, "depth": 4247.316901408451, "density": 7.660977772699836}, {"pressure": 7835.576946502805, "depth": 4267.243661971831, "density": 7.661775592721378}, {"pressure": 7858.701543676247, "depth": 4287.170422535211, "density": 7.662577593914742}, {"pressure": 7881.8285738433715, "depth": 4307.097183098591, "density": 7.66295102793035}, {"pressure": 7904.95804971703, "depth": 4327.023943661971, "density": 7.664194202355082}, {"pressure": 7928.089984060488, "depth": 4346.950704225352, "density": 7.665008842085196}, {"pressure": 7951.224389683998, "depth": 4366.877464788732, "density": 7.665827726627233}, {"pressure": 7974.361279442612, "depth": 4386.804225352113, "density": 7.666217922390149}, {"pressure": 7997.500666235808, "depth": 4406.730985915493, "density": 7.667478289399997}, {"pressure": 8020.642563007209, "depth": 4426.657746478873, "density": 7.668309996979398}, {"pressure": 8043.786982744879, "depth": 4446.584507042253, "density": 7.66871291895247}, {"pressure": 8066.933938481172, "depth": 4466.511267605633, "density": 7.669986338008703}, {"pressure": 8090.083443291705, "depth": 4486.438028169014, "density": 7.670831000469956}, {"pressure": 8113.235510295702, "depth": 4506.364788732394, "density": 7.671680010123247}, {"pressure": 8136.3901526555155, "depth": 4526.2915492957745, "density": 7.672100100630641}, {"pressure": 8159.547383575625, "depth": 4546.218309859155, "density": 7.673391127839453}, {"pressure": 8182.707216302286, "depth": 4566.145070422535, "density": 7.6742532637041085}, {"pressure": 8205.869664123782, "depth": 4586.071830985915, "density": 7.675119802781074}, {"pressure": 8229.034742918891, "depth": 4605.998591549295, "density": 7.675558127537132}, {"pressure": 8252.202514467268, "depth": 4625.925352112676, "density": 7.6768838754697}, {"pressure": 8275.373017739861, "depth": 4645.852112676056, "density": 7.67778906091474}, {"pressure": 8298.546265648194, "depth": 4665.7788732394365, "density": 7.678698524727534}, {"pressure": 8321.7221195783, "depth": 4685.705633802816, "density": 7.679128379800577}, {"pressure": 8344.900446164977, "depth": 4705.632394366197, "density": 7.680381398015525}, {"pressure": 8368.081257779671, "depth": 4725.559154929577, "density": 7.681204838089925}, {"pressure": 8391.26456683329, "depth": 4745.485915492957, "density": 7.682032390648036}, {"pressure": 8414.450385774922, "depth": 4765.412676056338, "density": 7.6824302043218085}, {"pressure": 8437.638727096139, "depth": 4785.339436619718, "density": 7.683699885249271}, {"pressure": 8460.829603328802, "depth": 4805.2661971830985, "density": 7.684539854720133}, {"pressure": 8484.02302704097, "depth": 4825.192957746478, "density": 7.68494998242465}, {"pressure": 8507.21901083625, "depth": 4845.119718309859, "density": 7.686232299114651}, {"pressure": 8530.417567353968, "depth": 4865.046478873239, "density": 7.687084797653915}, {"pressure": 8553.618709267768, "depth": 4884.973239436619, "density": 7.687941495738034}, {"pressure": 8576.822449284302, "depth": 4904.9, "density": 7.68836820493592}, {"pressure": 8577.055352742753, "depth": 4905.1, "density": 7.72055227184878}, {"pressure": 8599.496506120022, "depth": 4924.369615384616, "density": 7.689279568196107}, {"pressure": 8621.940341332955, "depth": 4943.639230769231, "density": 7.690647592615651}, {"pressure": 8644.386863677673, "depth": 4962.908846153847, "density": 7.6915683703443065}, {"pressure": 8666.836078467788, "depth": 4982.178461538462, "density": 7.692041746059344}, {"pressure": 8689.287991033978, "depth": 5001.448076923077, "density": 7.693415393964806}, {"pressure": 8711.742606723765, "depth": 5020.717692307692, "density": 7.694341651478027}, {"pressure": 8734.199931476698, "depth": 5039.987307692308, "density": 7.6952699442479275}, {"pressure": 8756.659971794186, "depth": 5059.256923076923, "density": 7.695751025393111}, {"pressure": 8779.12273301262, "depth": 5078.526538461539, "density": 7.697132813936982}, {"pressure": 8801.588220484256, "depth": 5097.796153846154, "density": 7.698066997084278}, {"pressure": 8824.05643957697, "depth": 5117.06576923077, "density": 7.6985534165260985}, {"pressure": 8846.52739567399, "depth": 5136.335384615385, "density": 7.699940886740077}, {"pressure": 8869.001094173609, "depth": 5155.605, "density": 7.7008806036713935}, {"pressure": 8891.47753783307, "depth": 5174.874615384615, "density": 7.70137149775319}, {"pressure": 8913.956605895472, "depth": 5194.1442307692305, "density": 7.702720548345948}, {"pressure": 8936.438200964894, "depth": 5213.413846153846, "density": 7.703586457416031}, {"pressure": 8958.922327665961, "depth": 5232.683461538461, "density": 7.704004029773539}, {"pressure": 8981.408990641426, "depth": 5251.953076923077, "density": 7.705323035813839}, {"pressure": 9003.898194551752, "depth": 5271.222692307692, "density": 7.7061937174236395}, {"pressure": 9026.389944074597, "depth": 5290.492307692308, "density": 7.706615927957583}, {"pressure": 9048.884243904302, "depth": 5309.761923076923, "density": 7.707939894925271}, {"pressure": 9071.381098751293, "depth": 5329.031538461538, "density": 7.708815402046427}, {"pressure": 9093.880513341439, "depth": 5348.301153846153, "density": 7.709692528541496}, {"pressure": 9116.38249241531, "depth": 5367.570769230769, "density": 7.71012100081964}, {"pressure": 9138.887040727353, "depth": 5386.840384615384, "density": 7.71145165952719}, {"pressure": 9161.394163044937, "depth": 5406.11, "density": 7.7123336731990175}, {"pressure": 9161.725901193136, "depth": 5406.31, "density": 10.935058487335965}, {"pressure": 9192.111275280056, "depth": 5423.605, "density": 11.600178535857735}, {"pressure": 9222.499196804705, "depth": 5440.9, "density": 11.601905957425826}, {"pressure": 9222.850618697723, "depth": 5441.1, "density": 11.583892219625412}, {"pressure": 9253.972884752206, "depth": 5458.811428571429, "density": 11.602184627235912}, {"pressure": 9285.097811575986, "depth": 5476.522857142857, "density": 11.603913816613174}, {"pressure": 9316.225393740755, "depth": 5494.234285714286, "density": 11.604166439644077}, {"pressure": 9347.35562590816, "depth": 5511.9457142857145, "density": 11.605154343925}, {"pressure": 9378.48850282546, "depth": 5529.657142857143, "density": 11.606140290015778}, {"pressure": 9409.624019319492, "depth": 5547.368571428571, "density": 11.607861829780953}, {"pressure": 9440.762170287782, "depth": 5565.08, "density": 11.608106422983827}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978.0, "density": 5.970502097594757}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 1800.170000000001, "initial_volume": 87.9675888778126, "volume_variation": -0.2773143387337029, "leakage_bbl": 0.0, "final_volume": 87.6902745390789, "leakage_mass": 0.0}, "operation_id": "Daq40oro2q"}, "_id": "Daq40oro2q-4", "backup": {"pressure_profile": [{"pressure": 4978.170000000001, "depth": 2072.0, "density": 1.6326750537290124}, {"pressure": 4980.010471269048, "depth": 2078.685, "density": 1.6171678782125012}, {"pressure": 4981.850942538096, "depth": 2085.37, "density": 1.6021353819839501}, {"pressure": 4983.6599332970645, "depth": 2092.0550000000003, "density": 1.5904576496813445}, {"pressure": 4985.468924056033, "depth": 2098.7400000000002, "density": 1.5790787614434523}, {"pressure": 4987.253904624058, "depth": 2105.425, "density": 1.57021683571682}, {"pressure": 4989.0388851920825, "depth": 2112.11, "density": 1.5615930032638525}, {"pressure": 4989.065426407149, "depth": 2112.21, "density": 1.5614560766592556}, {"pressure": 4989.091967622215, "depth": 2112.31, "density": 1.5612855057477077}, {"pressure": 4991.530252615735, "depth": 2121.575, "density": 1.5492884950825379}, {"pressure": 4993.968537609257, "depth": 2130.84, "density": 1.537558139821462}, {"pressure": 4996.377250273594, "depth": 2140.105, "density": 1.5303080123444368}, {"pressure": 4998.785962937932, "depth": 2149.37, "density": 1.5230761796365058}, {"pressure": 5001.176897526255, "depth": 2158.635, "density": 1.5187570412447489}, {"pressure": 5003.567832114579, "depth": 2167.9, "density": 1.5144365887484423}, {"pressure": 5003.593570211366, "depth": 2168.0, "density": 1.5144392501978508}, {"pressure": 5003.619308308151, "depth": 2168.1, "density": 1.5144419116384673}, {"pressure": 5006.18293655635, "depth": 2178.054558823529, "density": 1.5152516248050298}, {"pressure": 5008.746564804548, "depth": 2188.0091176470587, "density": 1.5160614090266484}, {"pressure": 5011.312373328877, "depth": 2197.9636764705883, "density": 1.5165665821309153}, {"pressure": 5013.878181853203, "depth": 2207.9182352941175, "density": 1.5170717376258966}, {"pressure": 5016.445382036986, "depth": 2217.8727941176467, "density": 1.517405942051456}, {"pressure": 5019.01258222077, "depth": 2227.8273529411763, "density": 1.5177400790583015}, {"pressure": 5021.580731512299, "depth": 2237.781911764706, "density": 1.5179784131135134}, {"pressure": 5024.148880803829, "depth": 2247.736470588235, "density": 1.5182166518203588}, {"pressure": 5026.717731717968, "depth": 2257.6910294117642, "density": 1.5184014632006353}, {"pressure": 5029.286582632107, "depth": 2267.645588235294, "density": 1.5185861636506364}, {"pressure": 5031.8559997996745, "depth": 2277.6001470588235, "density": 1.5187432174352542}, {"pressure": 5034.425416967241, "depth": 2287.554705882353, "density": 1.5189001522210244}, {"pressure": 5036.995334814287, "depth": 2297.5092647058827, "density": 1.5190440735394517}, {"pressure": 5039.565252661331, "depth": 2307.463823529412, "density": 1.5191878720542107}, {"pressure": 5042.135638780327, "depth": 2317.418382352941, "density": 1.5193249861287943}, {"pressure": 5044.706024899324, "depth": 2327.3729411764707, "density": 1.5194619754395058}, {"pressure": 5047.276863115225, "depth": 2337.3275000000003, "density": 1.5195958009570412}, {"pressure": 5049.847701331125, "depth": 2347.2820588235295, "density": 1.5197295007763014}, {"pressure": 5052.418984600034, "depth": 2357.2366176470587, "density": 1.5198620342871503}, {"pressure": 5054.990267868942, "depth": 2367.1911764705883, "density": 1.5199944417469864}, {"pressure": 5057.561994371499, "depth": 2377.145735294118, "density": 1.520126823572906}, {"pressure": 5060.133720874056, "depth": 2387.100294117647, "density": 1.5202590793269146}, {"pressure": 5062.705891741772, "depth": 2397.0548529411763, "density": 1.5203919497289462}, {"pressure": 5065.278062609487, "depth": 2407.009411764706, "density": 1.5205246942241304}, {"pressure": 5067.850680623487, "depth": 2416.9639705882355, "density": 1.5206584092659918}, {"pressure": 5070.423298637487, "depth": 2426.9185294117647, "density": 1.520791998669146}, {"pressure": 5072.996367513265, "depth": 2436.873088235294, "density": 1.5209267680614151}, {"pressure": 5075.569436389042, "depth": 2446.8276470588235, "density": 1.521061412143497}, {"pressure": 5078.142960396133, "depth": 2456.782205882353, "density": 1.521197358934499}, {"pressure": 5080.716484403224, "depth": 2466.7367647058823, "density": 1.521333180778937}, {"pressure": 5083.290468133721, "depth": 2476.6913235294114, "density": 1.5214703774108502}, {"pressure": 5085.8644518642195, "depth": 2486.645882352941, "density": 1.5216074494801723}, {"pressure": 5088.438900102025, "depth": 2496.6004411764707, "density": 1.5217459395472117}, {"pressure": 5091.013348339832, "depth": 2506.5550000000003, "density": 1.5218843054475675}, {"pressure": 5093.5882773783105, "depth": 2516.5095588235295, "density": 1.5220234514861628}, {"pressure": 5096.163206416789, "depth": 2526.4641176470586, "density": 1.52217003967076}, {"pressure": 5098.738652548107, "depth": 2536.4186764705883, "density": 1.5223233475833982}, {"pressure": 5101.314098679424, "depth": 2546.373235294118, "density": 1.522476525500692}, {"pressure": 5103.890069987645, "depth": 2556.3277941176475, "density": 1.522631388399006}, {"pressure": 5106.466041295866, "depth": 2566.2823529411767, "density": 1.5227861218108405}, {"pressure": 5109.042543265492, "depth": 2576.236911764706, "density": 1.5229424395706495}, {"pressure": 5111.619045235119, "depth": 2586.1914705882355, "density": 1.5230986283203918}, {"pressure": 5114.196083108256, "depth": 2596.146029411765, "density": 1.5232563542132664}, {"pressure": 5116.773120981393, "depth": 2606.1005882352943, "density": 1.523413951556904}, {"pressure": 5119.350699879829, "depth": 2616.0551470588234, "density": 1.5235730570054886}, {"pressure": 5121.928278778265, "depth": 2626.009705882353, "density": 1.523732034355825}, {"pressure": 5124.506403740165, "depth": 2635.9642647058827, "density": 1.5238925000499421}, {"pressure": 5127.084528702065, "depth": 2645.918823529412, "density": 1.5240528380898977}, {"pressure": 5129.663204719964, "depth": 2655.873382352941, "density": 1.5242146579215845}, {"pressure": 5132.241880737863, "depth": 2665.8279411764706, "density": 1.5243763505404617}, {"pressure": 5134.821112766305, "depth": 2675.7825000000003, "density": 1.5245394987109318}, {"pressure": 5137.400344794746, "depth": 2685.7370588235294, "density": 1.52470252010102}, {"pressure": 5139.98013770613, "depth": 2695.6916176470586, "density": 1.5248670006405278}, {"pressure": 5142.5599306175145, "depth": 2705.646176470588, "density": 1.525031354832567}, {"pressure": 5145.140289395149, "depth": 2715.600735294118, "density": 1.5251972955707855}, {"pressure": 5147.720648172784, "depth": 2725.5552941176475, "density": 1.5253631104338843}, {"pressure": 5150.301580561934, "depth": 2735.5098529411766, "density": 1.525532186038876}, {"pressure": 5152.882512951084, "depth": 2745.464411764706, "density": 1.5257011367669961}, {"pressure": 5155.464031044873, "depth": 2755.4189705882354, "density": 1.5258734685910849}, {"pressure": 5158.045549138663, "depth": 2765.373529411765, "density": 1.5260456765728374}, {"pressure": 5160.627662816357, "depth": 2775.3280882352947, "density": 1.5262204476873449}, {"pressure": 5163.20977649405, "depth": 2785.282647058824, "density": 1.526395095735353}, {"pressure": 5165.792494500325, "depth": 2795.237205882353, "density": 1.5265728879019826}, {"pressure": 5168.375212506599, "depth": 2805.1917647058826, "density": 1.5267505579596126}, {"pressure": 5170.9585489164465, "depth": 2815.1463235294123, "density": 1.5269329077448528}, {"pressure": 5173.5418853262945, "depth": 2825.1008823529414, "density": 1.5271151368599367}, {"pressure": 5176.125853920239, "depth": 2835.0554411764706, "density": 1.5273007816298598}, {"pressure": 5178.709822514185, "depth": 2845.01, "density": 1.5274863067690232}, {"pressure": 5178.735797810467, "depth": 2845.11, "density": 1.527507027035886}, {"pressure": 5178.761773106749, "depth": 2845.21, "density": 1.527515263545697}, {"pressure": 5181.197347932048, "depth": 2854.576666666667, "density": 1.528858574686019}, {"pressure": 5183.632922757345, "depth": 2863.9433333333336, "density": 1.5302021259322132}, {"pressure": 5186.072135574532, "depth": 2873.3100000000004, "density": 1.531171497121207}, {"pressure": 5188.5113483917185, "depth": 2882.6766666666667, "density": 1.532140997416628}, {"pressure": 5190.953231949591, "depth": 2892.0433333333335, "density": 1.5328657954965703}, {"pressure": 5193.395115507465, "depth": 2901.4100000000003, "density": 1.5335906499307397}, {"pressure": 5193.421182933868, "depth": 2901.51, "density": 1.5335640233340468}, {"pressure": 5193.447250360272, "depth": 2901.61, "density": 1.5335747913761828}, {"pressure": 5195.561802554548, "depth": 2909.7266666666665, "density": 1.5329056382270747}, {"pressure": 5197.6763547488235, "depth": 2917.8433333333332, "density": 1.5322361938652962}, {"pressure": 5199.789535211164, "depth": 2925.96, "density": 1.5318777103325034}, {"pressure": 5201.902715673503, "depth": 2934.076666666667, "density": 1.531519015813649}, {"pressure": 5204.015207516314, "depth": 2942.1933333333336, "density": 1.5313553020761568}, {"pressure": 5206.1276993591255, "depth": 2950.31, "density": 1.5311914275755356}, {"pressure": 5206.153738037673, "depth": 2950.41, "density": 1.531219369404115}, {"pressure": 5206.17977671622, "depth": 2950.5099999999998, "density": 1.5312145220116222}, {"pressure": 5208.329267104136, "depth": 2958.758333333333, "density": 1.53222132256996}, {"pressure": 5210.478757492053, "depth": 2967.0066666666667, "density": 1.5332282632323362}, {"pressure": 5212.630712819548, "depth": 2975.255, "density": 1.5339947186404823}, {"pressure": 5214.7826681470415, "depth": 2983.503333333333, "density": 1.534761251270514}, {"pressure": 5216.936528212382, "depth": 2991.7516666666666, "density": 1.5353623753281624}, {"pressure": 5219.090388277724, "depth": 3000.0, "density": 8.730742348638412}, {"pressure": 5222.4276768327945, "depth": 3002.605, "density": 8.730660249592455}, {"pressure": 5225.764965387864, "depth": 3005.21, "density": 8.730578158938783}, {"pressure": 5225.913463143526, "depth": 3005.31, "density": 8.73228095631019}, {"pressure": 5226.06196089919, "depth": 3005.41, "density": 8.732289979488236}, {"pressure": 5238.403809119354, "depth": 3013.7212499999996, "density": 8.733039865767955}, {"pressure": 5250.745657339519, "depth": 3022.0325, "density": 8.733789655458363}, {"pressure": 5263.087540644536, "depth": 3030.34375, "density": 8.734539349322127}, {"pressure": 5275.429423949553, "depth": 3038.6549999999997, "density": 8.735284469347292}, {"pressure": 5287.771345743683, "depth": 3046.96625, "density": 8.73526496249214}, {"pressure": 5300.113267537814, "depth": 3055.2775, "density": 8.735246378876475}, {"pressure": 5312.455231104351, "depth": 3063.58875, "density": 8.735136725373202}, {"pressure": 5324.797194670889, "depth": 3071.9, "density": 8.73491183254522}, {"pressure": 5324.945700772874, "depth": 3072.0, "density": 8.726427702709508}, {"pressure": 5325.09420687486, "depth": 3072.1, "density": 8.726425007882641}, {"pressure": 5339.86723694902, "depth": 3082.0476190476193, "density": 8.72615700227457}, {"pressure": 5354.640267023177, "depth": 3091.995238095238, "density": 8.725887716900697}, {"pressure": 5369.413365852496, "depth": 3101.942857142857, "density": 8.725618575507497}, {"pressure": 5384.186464681813, "depth": 3111.890476190476, "density": 8.72534957660143}, {"pressure": 5398.959637428489, "depth": 3121.838095238095, "density": 8.725415787821428}, {"pressure": 5413.732810175166, "depth": 3131.785714285714, "density": 8.725395850177467}, {"pressure": 5428.5060616529145, "depth": 3141.7333333333336, "density": 8.72537755203456}, {"pressure": 5443.279313130663, "depth": 3151.6809523809525, "density": 8.725445671461072}, {"pressure": 5458.052648875143, "depth": 3161.6285714285714, "density": 8.725515556149086}, {"pressure": 5472.825984619624, "depth": 3171.5761904761903, "density": 8.725498909028515}, {"pressure": 5487.599410800492, "depth": 3181.523809523809, "density": 8.725571340898018}, {"pressure": 5502.372836981359, "depth": 3191.4714285714285, "density": 8.725556896885776}, {"pressure": 5517.1463680223505, "depth": 3201.419047619048, "density": 8.725634766183473}, {"pressure": 5531.919899063341, "depth": 3211.366666666667, "density": 8.725625225001282}, {"pressure": 5546.6935457794, "depth": 3221.3142857142857, "density": 8.725704925499139}, {"pressure": 5561.467192495459, "depth": 3231.2619047619046, "density": 8.725696930350562}, {"pressure": 5576.240960601532, "depth": 3241.2095238095235, "density": 8.725690353923058}, {"pressure": 5591.014728707606, "depth": 3251.157142857143, "density": 8.725771949460123}, {"pressure": 5605.788623928379, "depth": 3261.104761904762, "density": 8.725855319057809}, {"pressure": 5620.562519149151, "depth": 3271.052380952381, "density": 8.725850382395544}, {"pressure": 5635.336547216557, "depth": 3281.0, "density": 8.72584694950497}, {"pressure": 5650.110575283962, "depth": 3290.947619047619, "density": 8.725932233178115}, {"pressure": 5664.884741936617, "depth": 3300.895238095238, "density": 8.725930373013297}, {"pressure": 5679.658908589273, "depth": 3310.842857142857, "density": 8.726017505770448}, {"pressure": 5694.43321957238, "depth": 3320.7904761904765, "density": 8.726017218892949}, {"pressure": 5709.207530555486, "depth": 3330.7380952380954, "density": 8.726106204074709}, {"pressure": 5723.981992259231, "depth": 3340.6857142857143, "density": 8.726108441503728}, {"pressure": 5738.7564539629775, "depth": 3350.633333333333, "density": 8.726200344630142}, {"pressure": 5753.53108585335, "depth": 3360.580952380952, "density": 8.726299946144978}, {"pressure": 5768.305717743724, "depth": 3370.5285714285715, "density": 8.726309366982969}, {"pressure": 5783.080533879018, "depth": 3380.476190476191, "density": 8.726410823378263}, {"pressure": 5797.85535001431, "depth": 3390.4238095238097, "density": 8.726421622027344}, {"pressure": 5812.630357350012, "depth": 3400.3714285714286, "density": 8.72643395709016}, {"pressure": 5827.405364685712, "depth": 3410.3190476190475, "density": 8.726537331051487}, {"pressure": 5842.180569007046, "depth": 3420.2666666666664, "density": 8.72664247907778}, {"pressure": 5856.955773328381, "depth": 3430.214285714286, "density": 8.72665749906477}, {"pressure": 5871.731180349156, "depth": 3440.161904761905, "density": 8.726674002866396}, {"pressure": 5886.506587369931, "depth": 3450.109523809524, "density": 8.726781080361233}, {"pressure": 5901.282202827039, "depth": 3460.057142857143, "density": 8.726889966978222}, {"pressure": 5916.057818284146, "depth": 3470.004761904762, "density": 8.726908083586713}, {"pressure": 5930.833647531152, "depth": 3479.9523809523807, "density": 8.72701883916322}, {"pressure": 5945.609476778157, "depth": 3489.9, "density": 8.727037143281526}, {"pressure": 5945.758086259865, "depth": 3490.0, "density": 8.731261281767729}, {"pressure": 5945.9066957415735, "depth": 3490.1, "density": 8.732084908016416}, {"pressure": 5960.714608497667, "depth": 3500.06338028169, "density": 8.731999930717299}, {"pressure": 5975.522521253758, "depth": 3510.0267605633803, "density": 8.732027974217308}, {"pressure": 5990.330338177649, "depth": 3519.9901408450705, "density": 8.732058405959263}, {"pressure": 6005.138155101538, "depth": 3529.9535211267603, "density": 8.731975508629233}, {"pressure": 6019.945634234331, "depth": 3539.9169014084505, "density": 8.731894459652251}, {"pressure": 6034.753113367123, "depth": 3549.8802816901407, "density": 8.731927452731364}, {"pressure": 6049.557690772977, "depth": 3559.843661971831, "density": 8.731962787858844}, {"pressure": 6064.36226817883, "depth": 3569.807042253521, "density": 8.731883279067333}, {"pressure": 6079.154026970471, "depth": 3579.7704225352113, "density": 8.73180702503673}, {"pressure": 6093.94578576211, "depth": 3589.7338028169015, "density": 8.731844695685288}, {"pressure": 6108.709664587311, "depth": 3599.6971830985913, "density": 8.731884324891036}, {"pressure": 6123.473543412511, "depth": 3609.6605633802815, "density": 8.731810408934592}, {"pressure": 6138.201585562278, "depth": 3619.6239436619717, "density": 8.731738176794185}, {"pressure": 6152.929627712042, "depth": 3629.587323943662, "density": 8.731779811195095}, {"pressure": 6167.613921943836, "depth": 3639.550704225352, "density": 8.731709441960485}, {"pressure": 6182.298216175632, "depth": 3649.5140845070423, "density": 8.731752862860187}, {"pressure": 6196.930876004848, "depth": 3659.4774647887325, "density": 8.731800039004868}, {"pressure": 6211.563535834064, "depth": 3669.4408450704223, "density": 8.731733367617029}, {"pressure": 6226.13671033319, "depth": 3679.4042253521125, "density": 8.731783675001513}, {"pressure": 6240.7098848323185, "depth": 3689.3676056338027, "density": 8.731720034735886}, {"pressure": 6255.215746068648, "depth": 3699.330985915493, "density": 8.731657831842458}, {"pressure": 6269.721607304977, "depth": 3709.294366197183, "density": 8.731709592610208}, {"pressure": 6284.152362306237, "depth": 3719.257746478873, "density": 8.7316488412683}, {"pressure": 6298.583117307496, "depth": 3729.221126760563, "density": 8.731701841823659}, {"pressure": 6312.931013101902, "depth": 3739.1845070422532, "density": 8.731755870720646}, {"pressure": 6327.27890889631, "depth": 3749.1478873239435, "density": 8.731696577839898}, {"pressure": 6341.536236846727, "depth": 3759.1112676056337, "density": 8.731638454624788}, {"pressure": 6355.793564797144, "depth": 3769.074647887324, "density": 8.731693520431369}, {"pressure": 6369.952664538517, "depth": 3779.038028169014, "density": 8.73174934196369}, {"pressure": 6384.111764279888, "depth": 3789.001408450704, "density": 8.731692549263363}, {"pressure": 6398.1650277029585, "depth": 3798.964788732394, "density": 8.731636876824824}, {"pressure": 6412.218291126029, "depth": 3808.9281690140842, "density": 8.73169345989543}, {"pressure": 6426.158166505974, "depth": 3818.8915492957744, "density": 8.731639012783473}, {"pressure": 6440.098041885919, "depth": 3828.8549295774646, "density": 8.731696148666725}, {"pressure": 6453.917037341927, "depth": 3838.818309859155, "density": 8.731642927088853}, {"pressure": 6467.736032797935, "depth": 3848.781690140845, "density": 8.731700470455262}, {"pressure": 6481.426721583414, "depth": 3858.745070422535, "density": 8.731758215757578}, {"pressure": 6495.1174103688945, "depth": 3868.708450704225, "density": 8.731706048686684}, {"pressure": 6508.672434733808, "depth": 3878.671830985915, "density": 8.731763921363292}, {"pressure": 6522.227459098719, "depth": 3888.6352112676054, "density": 8.731712625471987}, {"pressure": 6535.639491967894, "depth": 3898.5985915492956, "density": 8.731660861682654}, {"pressure": 6549.051524837069, "depth": 3908.561971830986, "density": 8.73171748726516}, {"pressure": 6562.31290339797, "depth": 3918.525352112676, "density": 8.731670122871336}, {"pressure": 6575.574281958872, "depth": 3928.488732394366, "density": 8.731730810077048}, {"pressure": 6588.7516235162375, "depth": 3938.452112676056, "density": 8.731794577086692}, {"pressure": 6601.928965073601, "depth": 3948.415492957746, "density": 8.731750514644878}, {"pressure": 6615.105077415266, "depth": 3958.3788732394364, "density": 8.731708156045391}, {"pressure": 6628.281189756932, "depth": 3968.3422535211266, "density": 8.731774211441708}, {"pressure": 6641.457336817963, "depth": 3978.305633802817, "density": 8.731842462651176}, {"pressure": 6654.633483878994, "depth": 3988.269014084507, "density": 8.731801949605687}, {"pressure": 6667.8096717130575, "depth": 3998.232394366197, "density": 8.731763161900961}, {"pressure": 6680.9858595471205, "depth": 4008.195774647887, "density": 8.73183373312349}, {"pressure": 6694.162094325176, "depth": 4018.159154929577, "density": 8.731906507613658}, {"pressure": 6707.338329103232, "depth": 4028.1225352112674, "density": 8.731869499956948}, {"pressure": 6720.514616888152, "depth": 4038.0859154929576, "density": 8.731944542093528}, {"pressure": 6733.690904673071, "depth": 4048.049295774648, "density": 8.731909414203152}, {"pressure": 6746.86725154207, "depth": 4058.012676056338, "density": 8.731986736252564}, {"pressure": 6760.043598411068, "depth": 4067.976056338028, "density": 8.731953196276336}, {"pressure": 6773.220011155737, "depth": 4077.939436619718, "density": 8.732032789250857}, {"pressure": 6786.396423900407, "depth": 4087.902816901408, "density": 8.732001329391597}, {"pressure": 6799.572908598631, "depth": 4097.866197183099, "density": 8.731972210119425}, {"pressure": 6812.7493932968555, "depth": 4107.829577464789, "density": 8.732054128601915}, {"pressure": 6825.92595601816, "depth": 4117.792957746478, "density": 8.732026768803856}, {"pressure": 6839.102518739466, "depth": 4127.756338028169, "density": 8.732110978225094}, {"pressure": 6852.279165561655, "depth": 4137.71971830986, "density": 8.732197430015802}, {"pressure": 6865.455812383841, "depth": 4147.683098591549, "density": 8.732171883268192}, {"pressure": 6878.632550896593, "depth": 4157.646478873239, "density": 8.732149592223022}, {"pressure": 6891.809289409346, "depth": 4167.609859154929, "density": 8.732240224686697}, {"pressure": 6904.986132742606, "depth": 4177.573239436619, "density": 8.732220845103267}, {"pressure": 6918.162976075869, "depth": 4187.536619718309, "density": 8.732315086484046}, {"pressure": 6931.339930918215, "depth": 4197.5, "density": 8.73241157751514}, {"pressure": 6944.516885760559, "depth": 4207.46338028169, "density": 8.732393997225321}, {"pressure": 6957.693958171796, "depth": 4217.4267605633795, "density": 8.732378120213767}, {"pressure": 6970.871030583036, "depth": 4227.39014084507, "density": 8.732476975253379}, {"pressure": 6984.048226506596, "depth": 4237.353521126761, "density": 8.732462878267977}, {"pressure": 6997.225422430153, "depth": 4247.316901408451, "density": 8.73256404906489}, {"pressure": 7010.402747700289, "depth": 4257.28028169014, "density": 8.73266748196776}, {"pressure": 7023.580072970426, "depth": 4267.243661971831, "density": 8.732655279523378}, {"pressure": 7036.757533167189, "depth": 4277.207042253522, "density": 8.73276103355886}, {"pressure": 7049.934993363949, "depth": 4287.170422535211, "density": 8.732750587150159}, {"pressure": 7063.11259473567, "depth": 4297.133802816901, "density": 8.73285866638467}, {"pressure": 7076.290196107392, "depth": 4307.097183098591, "density": 8.732849892003035}, {"pressure": 7089.46794484564, "depth": 4317.060563380281, "density": 8.732842697904035}, {"pressure": 7102.64569358389, "depth": 4327.023943661971, "density": 8.732953148410838}, {"pressure": 7115.823595365236, "depth": 4336.987323943662, "density": 8.733065789274708}, {"pressure": 7129.001497146581, "depth": 4346.950704225352, "density": 8.733059102560045}, {"pressure": 7142.179555012449, "depth": 4356.9140845070415, "density": 8.733054088893216}, {"pressure": 7155.35761287832, "depth": 4366.877464788732, "density": 8.733167955132458}, {"pressure": 7168.535832649633, "depth": 4376.840845070423, "density": 8.733164655060095}, {"pressure": 7181.714052420945, "depth": 4386.804225352113, "density": 8.73328086837837}, {"pressure": 7194.892440212209, "depth": 4396.767605633802, "density": 8.733399382735824}, {"pressure": 7208.070828003475, "depth": 4406.730985915493, "density": 8.73339784178088}, {"pressure": 7221.249389946442, "depth": 4416.694366197184, "density": 8.733518711329614}, {"pressure": 7234.427951889407, "depth": 4426.657746478873, "density": 8.733518846982903}, {"pressure": 7247.606694295713, "depth": 4436.621126760563, "density": 8.733520591112207}, {"pressure": 7260.785436702019, "depth": 4446.584507042253, "density": 8.733643869448358}, {"pressure": 7273.964365726187, "depth": 4456.547887323943, "density": 8.73376946344141}, {"pressure": 7287.143294750356, "depth": 4466.511267605633, "density": 8.733772949890175}, {"pressure": 7300.322416407997, "depth": 4476.474647887324, "density": 8.73377814735961}, {"pressure": 7313.501538065636, "depth": 4486.438028169014, "density": 8.73390615808718}, {"pressure": 7326.68085795019, "depth": 4496.4014084507035, "density": 8.734036493007732}, {"pressure": 7339.8601778347465, "depth": 4506.364788732394, "density": 8.7340434718618}, {"pressure": 7353.039702020724, "depth": 4516.328169014085, "density": 8.734052072202521}, {"pressure": 7366.219226206699, "depth": 4526.2915492957745, "density": 8.734184833341665}, {"pressure": 7379.398960813487, "depth": 4536.254929577464, "density": 8.734319929209999}, {"pressure": 7392.578695420275, "depth": 4546.218309859155, "density": 8.734330239175414}, {"pressure": 7405.758646594525, "depth": 4556.181690140846, "density": 8.734342121142594}, {"pressure": 7418.938597768774, "depth": 4566.145070422535, "density": 8.734479649479624}, {"pressure": 7432.118771815487, "depth": 4576.108450704225, "density": 8.734619520938194}, {"pressure": 7445.298945862198, "depth": 4586.071830985915, "density": 8.734633068022001}, {"pressure": 7458.479349373353, "depth": 4596.035211267605, "density": 8.734776335520314}, {"pressure": 7471.65975288451, "depth": 4605.998591549295, "density": 8.734792400489187}, {"pressure": 7484.840400892817, "depth": 4615.961971830986, "density": 8.734813548006443}, {"pressure": 7498.021048901123, "depth": 4625.925352112676, "density": 8.734963240167275}, {"pressure": 7511.201952139921, "depth": 4635.888732394365, "density": 8.735115269015942}, {"pressure": 7524.382855378719, "depth": 4645.852112676056, "density": 8.735138054560979}, {"pressure": 7537.564019877523, "depth": 4655.815492957747, "density": 8.735292507343308}, {"pressure": 7550.745184376324, "depth": 4665.7788732394365, "density": 8.735316908656293}, {"pressure": 7563.926620229262, "depth": 4675.742253521126, "density": 8.735476556743498}, {"pressure": 7577.108056082199, "depth": 4685.705633802816, "density": 8.735504991032581}, {"pressure": 7590.289773184795, "depth": 4695.669014084507, "density": 8.735534947919408}, {"pressure": 7603.47149028739, "depth": 4705.632394366197, "density": 8.735697028214293}, {"pressure": 7616.65349436929, "depth": 4715.595774647887, "density": 8.735861457446767}, {"pressure": 7629.835498451191, "depth": 4725.559154929577, "density": 8.735893063116364}, {"pressure": 7643.0177954996, "depth": 4735.522535211267, "density": 8.736059891800943}, {"pressure": 7656.2000925480115, "depth": 4745.485915492957, "density": 8.736092939094494}, {"pressure": 7669.382688780324, "depth": 4755.449295774648, "density": 8.736127647005103}, {"pressure": 7682.565285012635, "depth": 4765.412676056338, "density": 8.73629690604441}, {"pressure": 7695.748186307758, "depth": 4775.376056338027, "density": 8.736468525063774}, {"pressure": 7708.931087602882, "depth": 4785.339436619718, "density": 8.736504578574152}, {"pressure": 7722.1142977598865, "depth": 4795.302816901409, "density": 8.736541047317395}, {"pressure": 7735.297507916889, "depth": 4805.2661971830985, "density": 8.736713858464757}, {"pressure": 7748.481031228914, "depth": 4815.229577464788, "density": 8.736889043928812}, {"pressure": 7761.664554540939, "depth": 4825.192957746478, "density": 8.736927001570887}, {"pressure": 7774.848397023608, "depth": 4835.156338028169, "density": 8.737104602520997}, {"pressure": 7788.032239506278, "depth": 4845.119718309859, "density": 8.737143904398698}, {"pressure": 7801.216407251341, "depth": 4855.083098591549, "density": 8.737184561666938}, {"pressure": 7814.400574996405, "depth": 4865.046478873239, "density": 8.737364623698987}, {"pressure": 7827.585073831936, "depth": 4875.009859154929, "density": 8.737547072372877}, {"pressure": 7840.769572667469, "depth": 4884.973239436619, "density": 8.73758916025989}, {"pressure": 7853.954408384713, "depth": 4894.93661971831, "density": 8.737632578085384}, {"pressure": 7867.139244101955, "depth": 4904.9, "density": 8.737817494615404}, {"pressure": 7867.271533972684, "depth": 4905.0, "density": 8.734453198993771}, {"pressure": 7867.403823843412, "depth": 4905.1, "density": 8.733950662259652}, {"pressure": 7880.149120020892, "depth": 4914.734807692308, "density": 8.734188943961742}, {"pressure": 7892.894416198373, "depth": 4924.369615384616, "density": 8.734348125213101}, {"pressure": 7905.640278601352, "depth": 4934.004423076924, "density": 8.734507823070205}, {"pressure": 7918.386141004333, "depth": 4943.639230769231, "density": 8.734747215312114}, {"pressure": 7931.132571629043, "depth": 4953.274038461539, "density": 8.734907438389628}, {"pressure": 7943.879002253754, "depth": 4962.908846153847, "density": 8.73514792524009}, {"pressure": 7956.626003336504, "depth": 4972.5436538461545, "density": 8.735308609528241}, {"pressure": 7969.373004419256, "depth": 4982.178461538462, "density": 8.735550192637792}, {"pressure": 7982.120578232016, "depth": 4991.81326923077, "density": 8.735792856780186}, {"pressure": 7994.868152044773, "depth": 5001.448076923077, "density": 8.735953997976665}, {"pressure": 8007.6163008314725, "depth": 5011.0828846153845, "density": 8.736115541428566}, {"pressure": 8020.364449618171, "depth": 5020.717692307692, "density": 8.73635932024772}, {"pressure": 8033.112099237146, "depth": 5030.3525, "density": 8.736600783685288}, {"pressure": 8045.85974885612, "depth": 5039.987307692308, "density": 8.737047783664499}, {"pressure": 8058.607803695913, "depth": 5049.622115384615, "density": 8.737199742327471}, {"pressure": 8071.355858535707, "depth": 5059.256923076923, "density": 8.737446104972692}, {"pressure": 8084.104540564308, "depth": 5068.891730769231, "density": 8.737693543244404}, {"pressure": 8096.85322259291, "depth": 5078.526538461539, "density": 8.737845864479834}, {"pressure": 8109.602533929289, "depth": 5088.161346153846, "density": 8.738094396308005}, {"pressure": 8122.351845265667, "depth": 5097.796153846154, "density": 8.738247035107163}, {"pressure": 8135.101787984366, "depth": 5107.430961538462, "density": 8.73839994457901}, {"pressure": 8147.851730703066, "depth": 5117.06576923077, "density": 8.738649587466554}, {"pressure": 8160.602306830421, "depth": 5126.700576923077, "density": 8.738802751241957}, {"pressure": 8173.352882957777, "depth": 5136.335384615385, "density": 8.739053489601131}, {"pressure": 8186.10409447045, "depth": 5145.970192307692, "density": 8.739305308251904}, {"pressure": 8198.855305983125, "depth": 5155.605, "density": 8.739458706654508}, {"pressure": 8211.607154880767, "depth": 5165.239807692307, "density": 8.739612429761909}, {"pressure": 8224.35900377841, "depth": 5174.874615384615, "density": 8.73986553954433}, {"pressure": 8237.111496041713, "depth": 5184.509423076923, "density": 8.740021463871322}, {"pressure": 8249.863988305013, "depth": 5194.1442307692305, "density": 8.740278063566919}, {"pressure": 8262.617129323686, "depth": 5203.779038461538, "density": 8.740535744184072}, {"pressure": 8275.37027034236, "depth": 5213.413846153846, "density": 8.740691730708592}, {"pressure": 8288.12406172921, "depth": 5223.048653846154, "density": 8.74095050816285}, {"pressure": 8300.877853116059, "depth": 5232.683461538461, "density": 8.741106284317746}, {"pressure": 8313.63229441449, "depth": 5242.318269230769, "density": 8.741261070674392}, {"pressure": 8326.38673571292, "depth": 5251.953076923077, "density": 8.741519747099098}, {"pressure": 8339.141826916757, "depth": 5261.587884615385, "density": 8.741779507371442}, {"pressure": 8351.89691812059, "depth": 5271.222692307692, "density": 8.741934227283796}, {"pressure": 8364.652660573698, "depth": 5280.8575, "density": 8.7420887783}, {"pressure": 8377.408403026806, "depth": 5290.492307692308, "density": 8.742349653711507}, {"pressure": 8390.164797947195, "depth": 5300.1271153846155, "density": 8.742611615497589}, {"pressure": 8402.921192867585, "depth": 5309.761923076923, "density": 8.742765946079013}, {"pressure": 8415.678241330086, "depth": 5319.396730769231, "density": 8.742919933981835}, {"pressure": 8428.435289792586, "depth": 5329.031538461538, "density": 8.743183013170842}, {"pressure": 8441.192992707955, "depth": 5338.666346153846, "density": 8.743336567592399}, {"pressure": 8453.950695623322, "depth": 5348.301153846153, "density": 8.74360075060876}, {"pressure": 8466.70905371277, "depth": 5357.935961538461, "density": 8.743887853610259}, {"pressure": 8479.467411802218, "depth": 5367.570769230769, "density": 8.744174954266054}, {"pressure": 8492.226425565936, "depth": 5377.2055769230765, "density": 8.744462066779429}, {"pressure": 8504.985439329654, "depth": 5386.840384615384, "density": 8.74474917694698}, {"pressure": 8517.745109007341, "depth": 5396.475192307692, "density": 8.745036298977062}, {"pressure": 8530.504778685026, "depth": 5406.11, "density": 8.745321668388817}, {"pressure": 8530.637216610352, "depth": 5406.21, "density": 8.744367621393398}, {"pressure": 8530.76965453568, "depth": 5406.31, "density": 8.744370398495834}, {"pressure": 8542.22263092811, "depth": 5414.9575, "density": 8.744610558041924}, {"pressure": 8553.67560732054, "depth": 5423.605, "density": 8.744829587868887}, {"pressure": 8565.129338509207, "depth": 5432.2525, "density": 8.745033977686584}, {"pressure": 8576.583069697872, "depth": 5440.9, "density": 8.745234203765218}, {"pressure": 8576.715525831418, "depth": 5441.0, "density": 8.744861603163397}, {"pressure": 8576.847981964964, "depth": 5441.1, "density": 8.744865862311718}, {"pressure": 8588.578322894957, "depth": 5449.955714285715, "density": 8.745243036568462}, {"pressure": 8600.308663824948, "depth": 5458.811428571429, "density": 8.745620186083991}, {"pressure": 8612.039789663228, "depth": 5467.667142857143, "density": 8.745997327868201}, {"pressure": 8623.770915501507, "depth": 5476.522857142857, "density": 8.74637444490954}, {"pressure": 8635.502823198112, "depth": 5485.378571428571, "density": 8.746751554150155}, {"pressure": 8647.23473089472, "depth": 5494.234285714286, "density": 8.74712863864625}, {"pressure": 8658.967416386718, "depth": 5503.09, "density": 8.747505715250298}, {"pressure": 8670.70010187872, "depth": 5511.9457142857145, "density": 8.74788276710818}, {"pressure": 8682.43355969459, "depth": 5520.801428571429, "density": 8.748259810952197}, {"pressure": 8694.167017510461, "depth": 5529.657142857143, "density": 8.748636830048419}, {"pressure": 8705.901240102812, "depth": 5538.512857142858, "density": 8.749013840964016}, {"pressure": 8717.635462695163, "depth": 5547.368571428571, "density": 8.749390827130213}, {"pressure": 8729.37043918706, "depth": 5556.2242857142855, "density": 8.749575122087277}, {"pressure": 8741.105415678956, "depth": 5565.08, "density": 8.749926025605964}, {"pressure": 8741.224677417784, "depth": 5565.17, "density": 8.749926025605964}, {"pressure": 9440.890592193835, "depth": 5565.1900000000005, "density": 6.935003679361158}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978.0, "density": 5.970502097594757}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "overburden_pressure_id": "", "pore_pressure_id": ""}}, "id": 6, "stage": "PRODUCTION"}], "string_pressure_test": 5000, "string_sections": [{"top_md": 2072.0000000000005, "extension": 40.21, "sequence": 1, "base_md": 2112.2100000000005, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2112.2100000000005, "extension": 732.9, "sequence": 2, "base_md": 2845.1100000000006, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "nu": 0.31, "version": 1, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"internal_pressure_ratio": 100, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 146, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 146}, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 128}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2845.1100000000006, "extension": 56.4, "sequence": 3, "base_md": 2901.5100000000007, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2901.5100000000007, "extension": 48.9, "sequence": 4, "base_md": 2950.4100000000008, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "nu": 0.31, "version": 1, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2950.4100000000008, "extension": 54.9, "sequence": 5, "base_md": 3005.310000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 3005.310000000001, "extension": 2400.9, "sequence": 6, "base_md": 5406.210000000001, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.31, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "nu": 0.31, "version": 1, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5406.210000000001, "extension": 158.97, "sequence": 7, "base_md": 5565.180000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5565.180000000001, "extension": 31.04, "sequence": 8, "base_md": 5596.220000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"name": "VAM TOP", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 107}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5596.220000000001, "extension": 24.9, "sequence": 9, "base_md": 5621.120000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5621.120000000001, "extension": 21.67, "sequence": 10, "base_md": 5642.790000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5642.790000000001, "extension": 20.24, "sequence": 11, "base_md": 5663.030000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5663.030000000001, "extension": 27.42, "sequence": 12, "base_md": 5690.450000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5690.450000000001, "extension": 132.9, "sequence": 13, "base_md": 5823.35, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5823.35, "extension": 21.67, "sequence": 14, "base_md": 5845.02, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5845.02, "extension": 20.24, "sequence": 15, "base_md": 5865.26, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5865.26, "extension": 31.860000000000127, "sequence": 16, "base_md": 5897.12, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42, "thermomechanical_properties": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}}, "statistical_properties": {"ec_distribution": "weibull_2p", "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "wt_distribution": "normal", "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "ov_distribution": "weibull_2p", "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "id": 1, "wt_cov": 0.0259, "ec_mean": 3.924}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"internal_pressure_ratio": 100, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "density": 65.5035, "thermal_conductivity": 45.345257, "specific_heat": 460.9, "nu": 0.3, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "id": 1}, "statistical_properties": {"fu_mean": 1.0744, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "kt_mean": 0.9991, "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "ks_distribution": "normal", "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "fu_cov": 0.0089, "kt_distribution": "normal", "fy_cov": 0.0329, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}], "components": [{"component": {"name": "", "reference": "Packer Hall 5 1/2\"x 4 1/2\"", "maximum_od": 0, "minimum_id": 0, "id": 0, "attributes": {}, "type": "PACKER", "sub_type": "HYDRAULIC"}, "depth": 5565.18, "_id": "qo7D1ww4Nn", "config": {"max_od": 8.35, "compatible_casing_ods": [], "drift": 3.825, "envelope": {"envelope": [{"pressure": -10500, "axial": 400000}, {"pressure": 5000, "axial": 400000}, {"pressure": 12000, "axial": 100000}, {"pressure": 12000, "axial": -400000}, {"pressure": -8000, "axial": -400000}, {"pressure": -12000, "axial": -250000}, {"pressure": -12000, "axial": 325000}], "type": "Envelope 1"}, "custom_setting_pressure": false, "min_id": 3.825, "compatible_casing_max_weights": [], "compatible_casing_min_weights": [], "custom_setting_force": false, "setting_pressure": 1590, "compatible_casing_grades": []}, "name": "Packer (Hidr\u00e1ulico) #1"}], "annular_pressure_test": 6000, "_id": "mGy1L34nG0", "type": "PRODUCTION/INJECTION"}, "thermal_data": {"_id": "v2Y6WvVJO5", "api_gravity": 27.4, "fluid": "DFLT_BLACK_OIL_27.40_230.00_1.17", "gas_oil_ratio": 230, "annuli_data": [{"apb_bled_volume": null, "string_name": "COP/COI", "apb_max_pressure": null, "is_initial_top_pressure_custom": false, "string_id": "mGy1L34nG0", "apb_relief_mechanism": "NONE", "_id": "53LBJx9Ryq", "initial_top_pressure": 3178}, {"apb_bled_volume": null, "string_name": "Rev. Prod. 11 7/8\"", "apb_max_pressure": null, "is_initial_top_pressure_custom": false, "string_id": "AA1RJzv4Wj", "apb_relief_mechanism": "NONE", "_id": "WRBWQoLjWR", "initial_top_pressure": 3036.984013361966}], "depressurization": {"enabled": false, "_id": "W4Y8qvdmLg", "annulus_top_pressure": 0}, "gas_data": {"co2": 85, "nc4": 1.43, "nc5": 0.52, "nc6": 0.53, "h2_s": 50, "c3": 4.51, "c2": 8.07, "c1": 59.05, "_id": "A31ReKp17D", "c7": 1.02, "n2": 0.37, "ic5": 0.3, "ic4": 0.7}, "gas_gravity": 1.17, "fluid_type": "BLACK_OIL"}, "thermal_simulation": {"status": "SUCCESS", "task_id": "59e57890-5b1d-4950-950a-377503549d6a", "date_done": "2024-05-05 01:20:13.856020+00:00", "tubing_strings": [{"top_md": 2072, "completion_fluid": {"_id": "BrxBAwD9LW", "minimum_fluid_weight": 0, "fluid": "", "fluid_weight": 9}, "name": "Coluna #1", "annular_fluids": [{"solid_ratio": null, "is_custom": false, "weight": 9, "extension": 3493.1800000000003, "top": 2072, "corrected_solid_ratio": null, "fluid": "DFLT_FCBA_9.00", "salinity": null, "is_salinity_custom": null, "oil_water_ratio": null, "solid_density": null, "fluid_type": "FCBA", "base": 5565.18, "is_oil_water_ratio_custom": null, "is_solid_ratio_custom": null, "is_weight_custom": false}], "components": [{"config": {"max_od": 8.35, "compatible_casing_ods": [], "drift": 3.825, "envelope": {"type": "Envelope 1", "envelope": [{"pressure": -10500, "axial": 400000}, {"pressure": 5000, "axial": 400000}, {"pressure": 12000, "axial": 100000}, {"pressure": 12000, "axial": -400000}, {"pressure": -8000, "axial": -400000}, {"pressure": -12000, "axial": -250000}, {"pressure": -12000, "axial": 325000}]}, "custom_setting_pressure": false, "min_id": 3.825, "compatible_casing_max_weights": [], "compatible_casing_min_weights": [], "custom_setting_force": false, "setting_pressure": 1590, "compatible_casing_grades": []}, "depth": 5565.18, "_id": "qo7D1ww4Nn", "component": {"name": "", "reference": "Packer Hall 5 1/2\"x 4 1/2\"", "maximum_od": 0, "minimum_id": 0, "sub_type": "HYDRAULIC", "attributes": {}, "type": "PACKER", "id": 0}, "name": "Packer (Hidr\u00e1ulico) #1"}], "base_md": 5897.12, "od": 6.625, "string_pressure_test": 5000, "string_sections": [{"top_md": 2072.0000000000005, "extension": 40.21, "sequence": 1, "base_md": 2112.2100000000005, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2112.2100000000005, "extension": 732.9, "sequence": 2, "base_md": 2845.1100000000006, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 146, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 146}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 128}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2845.1100000000006, "extension": 56.4, "sequence": 3, "base_md": 2901.5100000000007, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2901.5100000000007, "extension": 48.9, "sequence": 4, "base_md": 2950.4100000000008, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 2950.4100000000008, "extension": 54.9, "sequence": 5, "base_md": 3005.310000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 3005.310000000001, "extension": 2400.9, "sequence": 6, "base_md": 5406.210000000001, "pipe": {"kwall_burst": 0.875, "weight": 28, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 6.625, "instance": {"is_valid": true, "errors": [], "rel": {"od": 6.625, "id": 160, "weight": 28}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.417, "id": 160}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 6.625, "id": 146, "weight": 28}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 3}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5406.210000000001, "extension": 158.97, "sequence": 7, "base_md": 5565.180000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "instance": {"is_valid": true, "errors": [], "rel": {"od": 5.5, "id": 142, "weight": 23}}, "kwall_triaxial": 1, "version": 8, "hc": null, "wt": 0.415, "id": 142}, "name": "VAM TOP HC", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 129}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5565.180000000001, "extension": 31.04, "sequence": 8, "base_md": 5596.220000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"name": "VAM TOP", "kwall": 1, "tension_ratio": 100, "compression_ratio": 100, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 7, "has_custom_envelope": false, "document": null, "id": 107}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5596.220000000001, "extension": 24.9, "sequence": 9, "base_md": 5621.120000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5621.120000000001, "extension": 21.67, "sequence": 10, "base_md": 5642.790000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5642.790000000001, "extension": 20.24, "sequence": 11, "base_md": 5663.030000000001, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5663.030000000001, "extension": 27.42, "sequence": 12, "base_md": 5690.450000000001, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5690.450000000001, "extension": 132.9, "sequence": 13, "base_md": 5823.35, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5823.35, "extension": 21.67, "sequence": 14, "base_md": 5845.02, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5845.02, "extension": 20.24, "sequence": 15, "base_md": 5865.26, "pipe": {"kwall_burst": 0.875, "weight": 23, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 5.5, "kwall_triaxial": 1, "wt": 0.415, "hc": null, "id": 142}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 5.5, "id": 142, "weight": 23}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 100, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 2}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}, {"top_md": 5865.26, "extension": 31.860000000000127, "sequence": 16, "base_md": 5897.12, "pipe": {"kwall_burst": 0.875, "weight": 13.5, "grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 4.5, "kwall_triaxial": 1, "wt": 0.29, "hc": null, "id": 144}, "connection": {"pipe": {"grade": {"kedes": 0.825, "ka": 1, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 1, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 5, "hn": 0, "kydes": 0.85, "n": 0.068, "special_alloy": false, "id": 42}, "statistical_properties": {}, "od": 4.5, "id": 144, "weight": 13.5}, "name": "JFE Lion", "kwall": 1, "tension_ratio": 1000, "compression_ratio": 80, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}}], "load_scenarios": [{"comment": "Gerado automaticamente", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o #1", "backup": {"attributes": {}, "type": "TUBING_HYDROSTATIC", "geopressures": {"fracture_pressure_id": "", "_id": "qP9dEwRed1", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "id": 1, "attributes": {"plug_depth": 5565.18, "mud_weight": 9, "test_pressure": 5000}, "_id": "2qgkxWNgK9", "type": "TUBING_PRESSURE_TEST", "is_complete": true, "stage": "PRODUCTION", "geopressures": {"fracture_pressure_id": "", "_id": "xx6LloVjej", "pore_pressure_id": "", "overburden_pressure_id": ""}}, {"comment": "Gerado automaticamente", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Teste de Press\u00e3o do Anular #1", "backup": {"attributes": {"packer_depth": 5565.18, "annulus_pressure": 6000, "fluid": 9}, "type": "PRESSURIZED_ANNULUS", "geopressures": {"fracture_pressure_id": "", "_id": "2BWxwbKpzY", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "OJ2jk8P78o", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "id": 2, "attributes": {"fluid": 9, "internal_pressure": 0}, "_id": "R9XVGnKRl3", "type": "ANNULUS_PRESSURE_TEST", "is_complete": true, "stage": "PRODUCTION", "geopressures": {"fracture_pressure_id": "", "_id": "4MVLN4Oqr2", "pore_pressure_id": "", "overburden_pressure_id": ""}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PO", "backup": {"pressure_profile": [{"pressure": 12512.97404159617, "depth": 2072, "density": 8.859906818746389}, {"pressure": 12543.24070972043, "depth": 2092.0550000000003, "density": 8.85952294025045}, {"pressure": 12573.50737784469, "depth": 2112.11, "density": 8.860439312300624}, {"pressure": 12573.658211107302, "depth": 2112.21, "density": 8.862828328313816}, {"pressure": 12573.809044369917, "depth": 2112.31, "density": 8.862271752527683}, {"pressure": 12615.738401410206, "depth": 2140.105, "density": 8.863537712166163}, {"pressure": 12657.667758450494, "depth": 2167.9, "density": 8.864684299469264}, {"pressure": 12657.818824008666, "depth": 2168, "density": 8.875842694211258}, {"pressure": 12657.969889566837, "depth": 2168.1, "density": 8.877768373937675}, {"pressure": 12785.835265241049, "depth": 2252.71375, "density": 8.878738407014218}, {"pressure": 12913.70064091526, "depth": 2337.3275, "density": 8.879068277717442}, {"pressure": 13041.582289377362, "depth": 2421.94125, "density": 8.879953352945817}, {"pressure": 13169.463937839464, "depth": 2506.5550000000003, "density": 8.880190877235918}, {"pressure": 13297.363660358313, "depth": 2591.1687500000003, "density": 8.8805712298538}, {"pressure": 13425.263382877158, "depth": 2675.7825000000003, "density": 8.881607054266912}, {"pressure": 13553.184713670962, "depth": 2760.3962500000002, "density": 8.882174307188892}, {"pressure": 13681.106044464765, "depth": 2845.01, "density": 8.883323969525053}, {"pressure": 13681.25725542865, "depth": 2845.11, "density": 8.879991491787337}, {"pressure": 13681.408466392537, "depth": 2845.21, "density": 8.879993873081801}, {"pressure": 13723.903626634657, "depth": 2873.3100000000004, "density": 8.880740859335335}, {"pressure": 13766.398786876778, "depth": 2901.4100000000003, "density": 8.881687695898322}, {"pressure": 13766.550010998813, "depth": 2901.51, "density": 8.885862517875177}, {"pressure": 13766.701235120847, "depth": 2901.61, "density": 8.885870322303456}, {"pressure": 13803.524517824533, "depth": 2925.96, "density": 8.887770310031241}, {"pressure": 13840.34780052822, "depth": 2950.31, "density": 8.88966951129137}, {"pressure": 13840.499047791074, "depth": 2950.41, "density": 8.885507513917245}, {"pressure": 13840.650295053929, "depth": 2950.5099999999998, "density": 8.885515318223522}, {"pressure": 13882.021226627256, "depth": 2977.8599999999997, "density": 8.887649396692627}, {"pressure": 13923.392158200584, "depth": 3005.21, "density": 8.889538209046455}, {"pressure": 13923.54342386359, "depth": 3005.31, "density": 8.89395684217363}, {"pressure": 13923.694689526596, "depth": 3005.41, "density": 8.893964633683726}, {"pressure": 13973.984299763191, "depth": 3038.6549999999997, "density": 8.896554213253783}, {"pressure": 14024.273909999787, "depth": 3071.9, "density": 8.897314172953244}, {"pressure": 14024.42519542252, "depth": 3072, "density": 8.888629651166893}, {"pressure": 14024.576480845253, "depth": 3072.1, "density": 8.888604896750955}, {"pressure": 14129.932998190352, "depth": 3141.7333333333336, "density": 8.889788598950393}, {"pressure": 14235.28951553545, "depth": 3211.366666666667, "density": 8.890359669160333}, {"pressure": 14340.6677876259, "depth": 3281, "density": 8.89101917198612}, {"pressure": 14446.046059716346, "depth": 3350.633333333333, "density": 8.892307385961658}, {"pressure": 14551.448289776983, "depth": 3420.2666666666664, "density": 8.893673342110304}, {"pressure": 14656.850519837622, "depth": 3489.9, "density": 8.894402410256667}, {"pressure": 14657.001974298671, "depth": 3490, "density": 8.89855846547861}, {"pressure": 14657.15342875972, "depth": 3490.1, "density": 8.899259775697562}, {"pressure": 14790.721134496478, "depth": 3578.5249999999996, "density": 8.899519589008403}, {"pressure": 14924.288840233237, "depth": 3666.95, "density": 8.900807519127845}, {"pressure": 15053.219125104872, "depth": 3755.375, "density": 8.902201849664914}, {"pressure": 15182.149409976506, "depth": 3843.7999999999997, "density": 8.902569725133828}, {"pressure": 15302.309389403372, "depth": 3932.2249999999995, "density": 8.903997342265717}, {"pressure": 15422.469368830238, "depth": 4020.6499999999996, "density": 8.90442955209611}, {"pressure": 15541.732445481744, "depth": 4109.075, "density": 8.90495996577888}, {"pressure": 15660.99552213325, "depth": 4197.5, "density": 8.906515301924676}, {"pressure": 15780.287848557631, "depth": 4285.924999999999, "density": 8.908204271801862}, {"pressure": 15899.580174982011, "depth": 4374.349999999999, "density": 8.908835361830445}, {"pressure": 16018.904655566157, "depth": 4462.775, "density": 8.909556386262288}, {"pressure": 16138.229136150303, "depth": 4551.2, "density": 8.911376123471388}, {"pressure": 16257.589281645893, "depth": 4639.625, "density": 8.912211102664571}, {"pressure": 16376.949427141482, "depth": 4728.049999999999, "density": 8.914212123790778}, {"pressure": 16496.348618376178, "depth": 4816.474999999999, "density": 8.916345881911631}, {"pressure": 16615.747809610875, "depth": 4904.9, "density": 8.91725119954531}, {"pressure": 16615.882818627626, "depth": 4905, "density": 8.913961880416911}, {"pressure": 16616.01782764438, "depth": 4905.1, "density": 8.913538430508968}, {"pressure": 16728.77029126115, "depth": 4988.601666666667, "density": 8.91602554492536}, {"pressure": 16841.522754877922, "depth": 5072.1033333333335, "density": 8.91806835950655}, {"pressure": 16954.321969012562, "depth": 5155.605, "density": 8.919771966716707}, {"pressure": 17067.121183147206, "depth": 5239.106666666667, "density": 8.922317467844227}, {"pressure": 17179.977592277603, "depth": 5322.608333333334, "density": 8.924742185412658}, {"pressure": 17292.834001407995, "depth": 5406.11, "density": 8.927252446057954}, {"pressure": 17292.969192119148, "depth": 5406.21, "density": 8.92620834494523}, {"pressure": 17293.104382830297, "depth": 5406.31, "density": 8.926211462013013}, {"pressure": 17316.487727170344, "depth": 5423.605, "density": 8.926765451386437}, {"pressure": 17339.87107151039, "depth": 5440.9, "density": 8.927350866814672}, {"pressure": 17340.006286677282, "depth": 5441, "density": 8.926925832752348}, {"pressure": 17340.141501844177, "depth": 5441.1, "density": 8.92692921830442}, {"pressure": 17423.98728958749, "depth": 5503.09, "density": 8.930215115712253}, {"pressure": 17507.833077330804, "depth": 5565.08, "density": 8.933519126392957}, {"pressure": 17507.954808592247, "depth": 5565.17, "density": 8.933519126392957}, {"pressure": 9429.453932604843, "depth": 5565.1900000000005, "density": 8.009658589788819}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 8.009658589788819}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 6.241276058868641}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 6.144361797291418}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 6.139388839661077}, {"pressure": 9814.11, "depth": 5978, "density": 6.145711428221514}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4Obql24EaJ", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 3970.164922205433, "depth": 2072, "density": 12.632895653826044}, {"pressure": 4056.4597815648335, "depth": 2112.11, "density": 12.632895653826044}, {"pressure": 4056.7440769158266, "depth": 2112.31, "density": 8.34037271207126}, {"pressure": 4127.598574715061, "depth": 2167.9, "density": 7.488771848312663}, {"pressure": 4127.852745326099, "depth": 2168.1, "density": 7.456603216005979}, {"pressure": 4376.219233527066, "depth": 2337.3275, "density": 8.6231280976973}, {"pressure": 4631.605187630597, "depth": 2506.5550000000003, "density": 8.866787066599572}, {"pressure": 4887.409062043315, "depth": 2675.7825000000003, "density": 8.881349464358012}, {"pressure": 5143.602208071672, "depth": 2845.01, "density": 8.894812096184404}, {"pressure": 5144.100429822999, "depth": 2845.21, "density": 14.616331518694578}, {"pressure": 5295.013200723747, "depth": 2901.4100000000003, "density": 15.777232007965505}, {"pressure": 5295.355462765142, "depth": 2901.61, "density": 10.09139850090205}, {"pressure": 5369.236283143481, "depth": 2950.31, "density": 8.913277244065206}, {"pressure": 5369.734091304978, "depth": 2950.5099999999998, "density": 14.677585963657524}, {"pressure": 5516.479245835702, "depth": 3005.21, "density": 15.762242923452082}, {"pressure": 5516.8217848111135, "depth": 3005.41, "density": 10.049065921645065}, {"pressure": 5617.835176783186, "depth": 3071.9, "density": 8.926128044954616}, {"pressure": 5618.139104074497, "depth": 3072.1, "density": 8.916314945154411}, {"pressure": 5829.894496538654, "depth": 3211.366666666667, "density": 8.933630459203563}, {"pressure": 6041.894224224394, "depth": 3350.633333333333, "density": 8.944002892132403}, {"pressure": 6254.120422895878, "depth": 3489.9, "density": 8.953493040388452}, {"pressure": 6254.425361979752, "depth": 3490.1, "density": 8.945997903624372}, {"pressure": 6523.761514803976, "depth": 3666.95, "density": 8.976494857004855}, {"pressure": 6787.552026078631, "depth": 3843.7999999999997, "density": 9.106478738624949}, {"pressure": 7040.529969162247, "depth": 4020.6499999999996, "density": 9.336244194413359}, {"pressure": 7292.592864095492, "depth": 4197.5, "density": 9.410976823275051}, {"pressure": 7544.89693238247, "depth": 4374.349999999999, "density": 9.419981230064003}, {"pressure": 7797.443143022119, "depth": 4551.2, "density": 9.429021815230325}, {"pressure": 8050.229952459254, "depth": 4728.049999999999, "density": 9.438004770486161}, {"pressure": 8303.262369965205, "depth": 4904.9, "density": 9.447174751033511}, {"pressure": 8303.548664821605, "depth": 4905.1, "density": 9.49043186690966}, {"pressure": 8542.723580353768, "depth": 5072.1033333333335, "density": 9.456307188537982}, {"pressure": 8782.125662402424, "depth": 5239.106666666667, "density": 9.465288717215993}, {"pressure": 9021.75378458319, "depth": 5406.11, "density": 9.474225711805937}, {"pressure": 9022.228906083708, "depth": 5406.31, "density": 15.66139265248064}, {"pressure": 9110.90665008143, "depth": 5440.9, "density": 16.927735144361154}, {"pressure": 9111.41939812835, "depth": 5441.1, "density": 16.901673542137722}, {"pressure": 9429.296013747906, "depth": 5565.08, "density": 16.92922143291954}, {"pressure": 9429.539003697284, "depth": 5565.280000000001, "density": 8.009658589788819}, {"pressure": 9468.879657779364, "depth": 5606.9, "density": 6.241276058868641}, {"pressure": 9469.0660600018, "depth": 5607.1, "density": 6.144361797291418}, {"pressure": 9641.49924070247, "depth": 5792.55, "density": 6.139388839661077}, {"pressure": 9814.11, "depth": 5978, "density": 6.145711428221514}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 11000, "apb_data": {"pressure_variation": 9334.97404159617, "initial_volume": 87.9675888778126, "volume_variation": 0.40552018967729, "leakage_bbl": 0, "final_volume": 88.37310906748989, "leakage_mass": 0}, "operation_id": "7qWOQo3oG4"}, "_id": "7qWOQo3oG4-4", "type": "THERMAL", "id": 3, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod Surg PA", "backup": {"pressure_profile": [{"pressure": 11864.61673111335, "depth": 2072, "density": 8.882971206950703}, {"pressure": 11894.958996345724, "depth": 2092.0550000000003, "density": 8.881747484896552}, {"pressure": 11925.301261578097, "depth": 2112.11, "density": 8.881741430963901}, {"pressure": 11925.452456341742, "depth": 2112.21, "density": 8.883987575835851}, {"pressure": 11925.603651105384, "depth": 2112.31, "density": 8.883489336851055}, {"pressure": 11967.62991148862, "depth": 2140.105, "density": 8.88397887456528}, {"pressure": 12009.656171871855, "depth": 2167.9, "density": 8.88436661650713}, {"pressure": 12009.807569589975, "depth": 2168, "density": 8.895238565779298}, {"pressure": 12009.958967308094, "depth": 2168.1, "density": 8.897343809712629}, {"pressure": 12138.08557441296, "depth": 2252.71375, "density": 8.897073414206186}, {"pressure": 12266.212181517827, "depth": 2337.3275, "density": 8.896201117542537}, {"pressure": 12394.32566303503, "depth": 2421.94125, "density": 8.896135832339262}, {"pressure": 12522.439144552234, "depth": 2506.5550000000003, "density": 8.895449037238457}, {"pressure": 12650.543498418694, "depth": 2591.1687500000003, "density": 8.894866926729012}, {"pressure": 12778.647852285152, "depth": 2675.7825000000003, "density": 8.894917421327326}, {"pressure": 12906.746577077154, "depth": 2760.3962500000002, "density": 8.894486580305605}, {"pressure": 13034.845301869153, "depth": 2845.01, "density": 8.894701103424017}, {"pressure": 13034.996704379295, "depth": 2845.11, "density": 8.891570298036527}, {"pressure": 13035.14810688944, "depth": 2845.21, "density": 8.891570842627349}, {"pressure": 13077.694167119009, "depth": 2873.3100000000004, "density": 8.891794056272483}, {"pressure": 13120.240227348579, "depth": 2901.4100000000003, "density": 8.892197467322557}, {"pressure": 13120.391630473632, "depth": 2901.51, "density": 8.896131752209909}, {"pressure": 13120.54303359869, "depth": 2901.61, "density": 8.89613796026949}, {"pressure": 13157.40921923429, "depth": 2925.96, "density": 8.897649353453945}, {"pressure": 13194.275404869893, "depth": 2950.31, "density": 8.899160229517904}, {"pressure": 13194.426817290248, "depth": 2950.41, "density": 8.895234960160328}, {"pressure": 13194.578229710605, "depth": 2950.5099999999998, "density": 8.895241169647601}, {"pressure": 13235.991477691243, "depth": 2977.8599999999997, "density": 8.896939176853618}, {"pressure": 13277.40472567188, "depth": 3005.21, "density": 8.898414024272109}, {"pressure": 13277.556139544422, "depth": 3005.31, "density": 8.902571188405204}, {"pressure": 13277.707553416965, "depth": 3005.41, "density": 8.902577387630505}, {"pressure": 13328.044680993042, "depth": 3038.6549999999997, "density": 8.904637828185008}, {"pressure": 13378.381808569116, "depth": 3071.9, "density": 8.90494581728173}, {"pressure": 13378.53323056082, "depth": 3072, "density": 8.89671292215603}, {"pressure": 13378.684652552523, "depth": 3072.1, "density": 8.896684031023842}, {"pressure": 13484.128007741614, "depth": 3141.7333333333336, "density": 8.89716512105631}, {"pressure": 13589.571362930705, "depth": 3211.366666666667, "density": 8.89706464154353}, {"pressure": 13695.02030232424, "depth": 3281, "density": 8.897044858452821}, {"pressure": 13800.46924171777, "depth": 3350.633333333333, "density": 8.897623896172552}, {"pressure": 13905.926132163559, "depth": 3420.2666666666664, "density": 8.898330499275671}, {"pressure": 14011.383022609345, "depth": 3489.9, "density": 8.898427442610375}, {"pressure": 14011.5345437497, "depth": 3490, "density": 8.902451299165463}, {"pressure": 14011.686064890055, "depth": 3490.1, "density": 8.903216818309117}, {"pressure": 14145.29851139474, "depth": 3578.5249999999996, "density": 8.902589112426961}, {"pressure": 14278.910957899427, "depth": 3666.95, "density": 8.902937887709276}, {"pressure": 14407.858702962745, "depth": 3755.375, "density": 8.903412255615253}, {"pressure": 14536.806448026064, "depth": 3843.7999999999997, "density": 8.902928499704128}, {"pressure": 14656.959121232649, "depth": 3932.2249999999995, "density": 8.903474086563959}, {"pressure": 14777.111794439232, "depth": 4020.6499999999996, "density": 8.903096114134485}, {"pressure": 14896.34590193197, "depth": 4109.075, "density": 8.902868375293458}, {"pressure": 15015.58000942471, "depth": 4197.5, "density": 8.903595973005977}, {"pressure": 15134.822891659145, "depth": 4285.924999999999, "density": 8.904508318608697}, {"pressure": 15254.06577389358, "depth": 4374.349999999999, "density": 8.904432243707559}, {"pressure": 15373.321582627388, "depth": 4462.775, "density": 8.904479603910138}, {"pressure": 15492.577391361194, "depth": 4551.2, "density": 8.905562590123537}, {"pressure": 15611.850234962365, "depth": 4639.625, "density": 8.905756144309033}, {"pressure": 15731.123078563534, "depth": 4728.049999999999, "density": 8.907053241139273}, {"pressure": 15850.418070811053, "depth": 4816.474999999999, "density": 8.9085510444981}, {"pressure": 15969.713063058574, "depth": 4904.9, "density": 8.908885246424722}, {"pressure": 15969.847945838601, "depth": 4905, "density": 8.90569789594474}, {"pressure": 15969.98282861863, "depth": 4905.1, "density": 8.905232008766914}, {"pressure": 16082.624015081148, "depth": 4988.601666666667, "density": 8.907228804274636}, {"pressure": 16195.265201543665, "depth": 5072.1033333333335, "density": 8.908787830360843}, {"pressure": 16307.941875964365, "depth": 5155.605, "density": 8.910059998520705}, {"pressure": 16420.61855038507, "depth": 5239.106666666667, "density": 8.91214896331082}, {"pressure": 16533.341491792977, "depth": 5322.608333333334, "density": 8.914012245048877}, {"pressure": 16646.06443320088, "depth": 5406.11, "density": 8.916031479475517}, {"pressure": 16646.199457405917, "depth": 5406.21, "density": 8.915130075059682}, {"pressure": 16646.33448161095, "depth": 5406.31, "density": 8.915132672855963}, {"pressure": 16669.688376430164, "depth": 5423.605, "density": 8.915554377155795}, {"pressure": 16693.04227124938, "depth": 5440.9, "density": 8.915917644805294}, {"pressure": 16693.177312389453, "depth": 5441, "density": 8.915520681610602}, {"pressure": 16693.31235352953, "depth": 5441.1, "density": 8.915522782881704}, {"pressure": 16777.042147026335, "depth": 5503.09, "density": 8.9179107174159}, {"pressure": 16860.771940523144, "depth": 5565.08, "density": 8.920316488371675}, {"pressure": 16860.89350337868, "depth": 5565.17, "density": 8.920316488371675}, {"pressure": 9441.371045838301, "depth": 5565.1900000000005, "density": 6.89027265347066}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978, "density": 5.960216471289632}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "EjDnE2kq5z", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5081.543330705224, "depth": 2072, "density": 10.674942125040534}, {"pressure": 5154.463479386348, "depth": 2112.11, "density": 10.674942125040534}, {"pressure": 5154.729782626977, "depth": 2112.31, "density": 7.812538170321899}, {"pressure": 5223.371375987518, "depth": 2167.9, "density": 7.254884981871999}, {"pressure": 5223.618428155485, "depth": 2168.1, "density": 7.247769451638367}, {"pressure": 5432.8431713150985, "depth": 2337.3275, "density": 7.264151353677423}, {"pressure": 5642.383376861897, "depth": 2506.5550000000003, "density": 7.275060960172339}, {"pressure": 5852.244000586632, "depth": 2675.7825000000003, "density": 7.286228726545228}, {"pressure": 6062.426190315201, "depth": 2845.01, "density": 7.29735011487494}, {"pressure": 6062.770913859334, "depth": 2845.21, "density": 10.113154614228703}, {"pressure": 6165.055577853925, "depth": 2901.4100000000003, "density": 10.693388406212478}, {"pressure": 6165.323568723582, "depth": 2901.61, "density": 7.901555922747114}, {"pressure": 6225.913257982565, "depth": 2950.31, "density": 7.309782102195059}, {"pressure": 6226.258142670403, "depth": 2950.5099999999998, "density": 10.168725715684262}, {"pressure": 6325.8482369680605, "depth": 3005.21, "density": 10.697206760312623}, {"pressure": 6326.1165038296385, "depth": 3005.41, "density": 7.870144918121326}, {"pressure": 6408.947719567878, "depth": 3071.9, "density": 7.319445702835113}, {"pressure": 6409.196943072566, "depth": 3072.1, "density": 7.311469957007408}, {"pressure": 6582.8408976066985, "depth": 3211.366666666667, "density": 7.325768204676366}, {"pressure": 6756.665700626388, "depth": 3350.633333333333, "density": 7.333450650639767}, {"pressure": 6930.671065959044, "depth": 3489.9, "density": 7.3410155638128085}, {"pressure": 6930.921088302758, "depth": 3490.1, "density": 7.3349054975349315}, {"pressure": 7151.655055452435, "depth": 3666.95, "density": 7.3566704659157915}, {"pressure": 7366.704750999159, "depth": 3843.7999999999997, "density": 7.423866274723627}, {"pressure": 7570.772543478621, "depth": 4020.6499999999996, "density": 7.531197066352129}, {"pressure": 7773.868248316369, "depth": 4197.5, "density": 7.582746249268261}, {"pressure": 7977.154974659774, "depth": 4374.349999999999, "density": 7.589878195296857}, {"pressure": 8180.635432496095, "depth": 4551.2, "density": 7.597111320942968}, {"pressure": 8384.318889006508, "depth": 4728.049999999999, "density": 7.604690444469053}, {"pressure": 8588.20001404185, "depth": 4904.9, "density": 7.612070562464109}, {"pressure": 8588.430697082133, "depth": 4905.1, "density": 7.646947291297027}, {"pressure": 8781.155253199015, "depth": 5072.1033333333335, "density": 7.619789898789728}, {"pressure": 8974.081542118764, "depth": 5239.106666666667, "density": 7.627765849568972}, {"pressure": 9167.199040553918, "depth": 5406.11, "density": 7.635325738995607}, {"pressure": 9167.524825329016, "depth": 5406.31, "density": 10.738817918021573}, {"pressure": 9227.13962069832, "depth": 5440.9, "density": 11.379895576987375}, {"pressure": 9227.48434422416, "depth": 5441.1, "density": 11.36309446915446}, {"pressure": 9441.243857658057, "depth": 5565.08, "density": 11.384235135580552}, {"pressure": 9441.452888665372, "depth": 5565.280000000001, "density": 6.89027265347066}, {"pressure": 9479.300649361498, "depth": 5606.9, "density": 6.004433028024357}, {"pressure": 9479.481181876785, "depth": 5607.1, "density": 5.9508791022011165}, {"pressure": 9646.709121728585, "depth": 5792.55, "density": 5.954059093695486}, {"pressure": 9814.11, "depth": 5978, "density": 5.960216471289632}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 8686.61673111335, "initial_volume": 87.9675888778126, "volume_variation": 0.36469766093472344, "leakage_bbl": 0, "final_volume": 88.33228653874733, "leakage_mass": 0}, "operation_id": "NPMo3LQLxK"}, "_id": "NPMo3LQLxK-4", "type": "THERMAL", "id": 4, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PO", "backup": {"pressure_profile": [{"pressure": 5000, "depth": 2072, "density": 1.63760284770828}, {"pressure": 5001.843438768823, "depth": 2078.685, "density": 1.6198760137977095}, {"pressure": 5003.686877537648, "depth": 2085.37, "density": 1.6026219221269116}, {"pressure": 5005.4945974242, "depth": 2092.0550000000003, "density": 1.5894507034205718}, {"pressure": 5007.302317310752, "depth": 2098.7400000000002, "density": 1.5764408667724208}, {"pressure": 5009.082991036673, "depth": 2105.425, "density": 1.5665786264573573}, {"pressure": 5010.8636647625935, "depth": 2112.11, "density": 1.5568143830518495}, {"pressure": 5010.890124985783, "depth": 2112.21, "density": 1.5566585810685034}, {"pressure": 5010.916585208972, "depth": 2112.31, "density": 1.556463799029782}, {"pressure": 5013.344872202376, "depth": 2121.575, "density": 1.5431278524705643}, {"pressure": 5015.773159195781, "depth": 2130.84, "density": 1.5299915028352522}, {"pressure": 5018.168855776536, "depth": 2140.105, "density": 1.5220761336035014}, {"pressure": 5020.564552357291, "depth": 2149.37, "density": 1.5142351891345407}, {"pressure": 5022.9406518892165, "depth": 2158.635, "density": 1.509470726676222}, {"pressure": 5025.316751421142, "depth": 2167.9, "density": 1.5047696092774372}, {"pressure": 5025.342324529711, "depth": 2168, "density": 1.5047704761635488}, {"pressure": 5025.367897638282, "depth": 2168.1, "density": 1.5047713430347358}, {"pressure": 5027.914865078792, "depth": 2178.054558823529, "density": 1.5054629020644663}, {"pressure": 5030.461832519301, "depth": 2188.0091176470587, "density": 1.5061545024464478}, {"pressure": 5033.010711881156, "depth": 2197.9636764705883, "density": 1.5066151842586775}, {"pressure": 5035.559591243008, "depth": 2207.9182352941175, "density": 1.5070758350227735}, {"pressure": 5038.109792927611, "depth": 2217.8727941176467, "density": 1.5074087419356634}, {"pressure": 5040.659994612214, "depth": 2227.8273529411763, "density": 1.507741577705796}, {"pressure": 5043.211192938014, "depth": 2237.781911764706, "density": 1.508003989042254}, {"pressure": 5045.762391263815, "depth": 2247.736470588235, "density": 1.5082663071099076}, {"pressure": 5048.314407167791, "depth": 2257.6910294117642, "density": 1.5084900555417124}, {"pressure": 5050.866423071769, "depth": 2267.645588235294, "density": 1.5087136985704293}, {"pressure": 5053.419158982646, "depth": 2277.6001470588235, "density": 1.5089164787705638}, {"pressure": 5055.9718948935215, "depth": 2287.554705882353, "density": 1.5091191469887695}, {"pressure": 5058.52529850151, "depth": 2297.5092647058827, "density": 1.5093107825991463}, {"pressure": 5061.0787021094975, "depth": 2307.463823529412, "density": 1.509502302733107}, {"pressure": 5063.632746241238, "depth": 2317.418382352941, "density": 1.5096882541649506}, {"pressure": 5066.18679037298, "depth": 2327.3729411764707, "density": 1.5098740883400754}, {"pressure": 5068.74146182775, "depth": 2337.3275000000003, "density": 1.5100573919076454}, {"pressure": 5071.29613328252, "depth": 2347.2820588235295, "density": 1.5102405773910748}, {"pressure": 5073.8514266272905, "depth": 2357.2366176470587, "density": 1.51042292057705}, {"pressure": 5076.406719972062, "depth": 2367.1911764705883, "density": 1.5106051453807312}, {"pressure": 5078.962634087859, "depth": 2377.145735294118, "density": 1.5107874669336863}, {"pressure": 5081.518548203656, "depth": 2387.100294117647, "density": 1.5109696701003172}, {"pressure": 5084.075084381222, "depth": 2397.0548529411763, "density": 1.511152492748988}, {"pressure": 5086.631620558787, "depth": 2407.009411764706, "density": 1.5113351971707882}, {"pressure": 5089.188781362533, "depth": 2416.9639705882355, "density": 1.5115187800752494}, {"pressure": 5091.745942166278, "depth": 2426.9185294117647, "density": 1.5117022449930524}, {"pressure": 5094.303730878044, "depth": 2436.873088235294, "density": 1.51188677405555}, {"pressure": 5096.861519589811, "depth": 2446.8276470588235, "density": 1.5120711854293125}, {"pressure": 5099.41994000317, "depth": 2456.782205882353, "density": 1.5122567714650572}, {"pressure": 5101.9783604165295, "depth": 2466.7367647058823, "density": 1.5124422401441127}, {"pressure": 5104.53741659274, "depth": 2476.6913235294114, "density": 1.5126289403913622}, {"pressure": 5107.096472768951, "depth": 2486.645882352941, "density": 1.5128155236312815}, {"pressure": 5109.656168918095, "depth": 2496.6004411764707, "density": 1.513003372022366}, {"pressure": 5112.215865067239, "depth": 2506.5550000000003, "density": 1.5131911037654766}, {"pressure": 5114.776205506381, "depth": 2516.5095588235295, "density": 1.513380370620492}, {"pressure": 5117.336545945522, "depth": 2526.4641176470586, "density": 1.513569521270833}, {"pressure": 5119.897539736911, "depth": 2536.4186764705883, "density": 1.5137624984491638}, {"pressure": 5122.458533528302, "depth": 2546.373235294118, "density": 1.5139553605819402}, {"pressure": 5125.020193514798, "depth": 2556.3277941176475, "density": 1.514151561324434}, {"pressure": 5127.581853501294, "depth": 2566.2823529411767, "density": 1.5143476480262832}, {"pressure": 5130.144189284979, "depth": 2576.236911764706, "density": 1.5145461784151344}, {"pressure": 5132.706525068665, "depth": 2586.1914705882355, "density": 1.5147445954871235}, {"pressure": 5135.269543972577, "depth": 2596.146029411765, "density": 1.514944961649926}, {"pressure": 5137.83256287649, "depth": 2606.1005882352943, "density": 1.5151452150640532}, {"pressure": 5140.39627096338, "depth": 2616.0551470588234, "density": 1.5153471438609283}, {"pressure": 5142.959979050271, "depth": 2626.009705882353, "density": 1.5155489603909833}, {"pressure": 5145.524381687697, "depth": 2635.9642647058827, "density": 1.5157523021736168}, {"pressure": 5148.088784325124, "depth": 2645.918823529412, "density": 1.515955532123698}, {"pressure": 5150.653886501163, "depth": 2655.873382352941, "density": 1.5161602059369559}, {"pressure": 5153.218988677202, "depth": 2665.8279411764706, "density": 1.5163647683258963}, {"pressure": 5155.784795175887, "depth": 2675.7825000000003, "density": 1.5165708027233806}, {"pressure": 5158.3506016745705, "depth": 2685.7370588235294, "density": 1.5167767261130338}, {"pressure": 5160.917120036294, "depth": 2695.6916176470586, "density": 1.5169860512285287}, {"pressure": 5163.483638398019, "depth": 2705.646176470588, "density": 1.5171952663553443}, {"pressure": 5166.050881817626, "depth": 2715.600735294118, "density": 1.5174081900549072}, {"pressure": 5168.618125237233, "depth": 2725.5552941176475, "density": 1.5176210048793901}, {"pressure": 5171.18610428769, "depth": 2735.5098529411766, "density": 1.5178364861099407}, {"pressure": 5173.754083338149, "depth": 2745.464411764706, "density": 1.5180518592518741}, {"pressure": 5176.322805936319, "depth": 2755.4189705882354, "density": 1.5182693213214105}, {"pressure": 5178.891528534491, "depth": 2765.373529411765, "density": 1.5184866759073046}, {"pressure": 5181.461001133179, "depth": 2775.3280882352947, "density": 1.5187115006175063}, {"pressure": 5184.030473731867, "depth": 2785.282647058824, "density": 1.5189405636462334}, {"pressure": 5186.60070194763, "depth": 2795.237205882353, "density": 1.5191711571178876}, {"pressure": 5189.170930163395, "depth": 2805.1917647058826, "density": 1.5194016395130547}, {"pressure": 5191.741919144077, "depth": 2815.1463235294123, "density": 1.5196335663080176}, {"pressure": 5194.312908124758, "depth": 2825.1008823529414, "density": 1.5198653824603012}, {"pressure": 5196.884662820176, "depth": 2835.0554411764706, "density": 1.5200986046424312}, {"pressure": 5199.456417515595, "depth": 2845.01, "density": 1.5203317166022112}, {"pressure": 5199.482270846643, "depth": 2845.11, "density": 1.5203534301134813}, {"pressure": 5199.50812417769, "depth": 2845.21, "density": 1.5203621832923566}, {"pressure": 5201.932439177142, "depth": 2854.576666666667, "density": 1.5217758940314383}, {"pressure": 5204.356754176593, "depth": 2863.9433333333336, "density": 1.5231898847665475}, {"pressure": 5206.784984546264, "depth": 2873.3100000000004, "density": 1.5242227277227953}, {"pressure": 5209.213214915936, "depth": 2882.6766666666667, "density": 1.5252646064798905}, {"pressure": 5211.644349033106, "depth": 2892.0433333333335, "density": 1.5260575374186596}, {"pressure": 5214.0754831502745, "depth": 2901.4100000000003, "density": 1.5268505457089185}, {"pressure": 5214.101436896916, "depth": 2901.51, "density": 1.5268227689383607}, {"pressure": 5214.127390643556, "depth": 2901.61, "density": 1.5268344035782528}, {"pressure": 5216.232696003266, "depth": 2909.7266666666665, "density": 1.5261652211295418}, {"pressure": 5218.338001362975, "depth": 2917.8433333333332, "density": 1.5255191177220873}, {"pressure": 5220.441941000252, "depth": 2925.96, "density": 1.525194102746649}, {"pressure": 5222.54588063753, "depth": 2934.076666666667, "density": 1.5248688725818653}, {"pressure": 5224.649177319465, "depth": 2942.1933333333336, "density": 1.5247428838738895}, {"pressure": 5226.752474001399, "depth": 2950.31, "density": 1.5246167347717094}, {"pressure": 5226.778399844475, "depth": 2950.41, "density": 1.5246457966715115}, {"pressure": 5226.804325687553, "depth": 2950.5099999999998, "density": 1.524641338485187}, {"pressure": 5228.94462885436, "depth": 2958.758333333333, "density": 1.525710933472498}, {"pressure": 5231.084932021168, "depth": 2967.0066666666667, "density": 1.5267806965847766}, {"pressure": 5233.2279079520185, "depth": 2975.255, "density": 1.5276047403209652}, {"pressure": 5235.37088388287, "depth": 2983.503333333333, "density": 1.5284288835734072}, {"pressure": 5237.515947247228, "depth": 2991.7516666666666, "density": 1.5290866958994676}, {"pressure": 5239.661010611584, "depth": 3000, "density": 8.721200326404945}, {"pressure": 5242.994274900973, "depth": 3002.605, "density": 8.721127486316536}, {"pressure": 5246.327539190363, "depth": 3005.21, "density": 8.721054654119916}, {"pressure": 5246.475866726519, "depth": 3005.31, "density": 8.72274752199452}, {"pressure": 5246.624194262675, "depth": 3005.41, "density": 8.722757315047065}, {"pressure": 5258.951851382301, "depth": 3013.7212499999996, "density": 8.723571180181894}, {"pressure": 5271.279508501929, "depth": 3022.0325, "density": 8.724384936138152}, {"pressure": 5283.607320784573, "depth": 3030.34375, "density": 8.725198586301099}, {"pressure": 5295.935133067216, "depth": 3038.6549999999997, "density": 8.726007514385858}, {"pressure": 5308.263104071475, "depth": 3046.96625, "density": 8.726028642204136}, {"pressure": 5320.591075075734, "depth": 3055.2775, "density": 8.726050540790824}, {"pressure": 5332.919208483563, "depth": 3063.58875, "density": 8.725976523229201}, {"pressure": 5345.247341891393, "depth": 3071.9, "density": 8.72578069268245}, {"pressure": 5345.3956875780095, "depth": 3072, "density": 8.717082422296206}, {"pressure": 5345.544033264624, "depth": 3072.1, "density": 8.717080069556426}, {"pressure": 5360.301292384191, "depth": 3082.0476190476193, "density": 8.716846104260698}, {"pressure": 5375.058551503756, "depth": 3091.995238095238, "density": 8.716612272972464}, {"pressure": 5389.816044556525, "depth": 3101.942857142857, "density": 8.716378580794135}, {"pressure": 5404.573537609294, "depth": 3111.890476190476, "density": 8.716145022625426}, {"pressure": 5419.331269471617, "depth": 3121.838095238095, "density": 8.716260961806826}, {"pressure": 5434.089001333939, "depth": 3131.785714285714, "density": 8.716289060739655}, {"pressure": 5448.846976902719, "depth": 3141.7333333333336, "density": 8.716318407049807}, {"pressure": 5463.604952471498, "depth": 3151.6809523809525, "density": 8.716435997148754}, {"pressure": 5478.36317679096, "depth": 3161.6285714285714, "density": 8.716555120696567}, {"pressure": 5493.121401110422, "depth": 3171.5761904761903, "density": 8.716585832017293}, {"pressure": 5507.879879090832, "depth": 3181.523809523809, "density": 8.716706552943513}, {"pressure": 5522.638357071242, "depth": 3191.4714285714285, "density": 8.71673859438927}, {"pressure": 5537.397093609536, "depth": 3201.419047619048, "density": 8.716860915323325}, {"pressure": 5552.155830147827, "depth": 3211.366666666667, "density": 8.716894287165653}, {"pressure": 5566.914830145714, "depth": 3221.3142857142857, "density": 8.717018210731755}, {"pressure": 5581.673830143601, "depth": 3231.2619047619046, "density": 8.717052913183332}, {"pressure": 5596.433098507482, "depth": 3241.2095238095235, "density": 8.717088888019381}, {"pressure": 5611.192366871363, "depth": 3251.157142857143, "density": 8.717214475226111}, {"pressure": 5625.951909711901, "depth": 3261.104761904762, "density": 8.717343852630139}, {"pressure": 5640.711452552438, "depth": 3271.052380952381, "density": 8.717383304725129}, {"pressure": 5655.471289860757, "depth": 3281, "density": 8.717428239071118}, {"pressure": 5670.231127169077, "depth": 3290.947619047619, "density": 8.717563660803558}, {"pressure": 5684.991268137924, "depth": 3300.895238095238, "density": 8.717609894460235}, {"pressure": 5699.7514091067715, "depth": 3310.842857142857, "density": 8.71774691888168}, {"pressure": 5714.511858787096, "depth": 3320.7904761904765, "density": 8.71779445114444}, {"pressure": 5729.272308467418, "depth": 3330.7380952380954, "density": 8.717933081062785}, {"pressure": 5744.033071700101, "depth": 3340.6857142857143, "density": 8.717981965200632}, {"pressure": 5758.793834932783, "depth": 3350.633333333333, "density": 8.718122205977979}, {"pressure": 5773.554916575304, "depth": 3360.580952380952, "density": 8.718264002833141}, {"pressure": 5788.315998217824, "depth": 3370.5285714285715, "density": 8.718314259289105}, {"pressure": 5803.077403183785, "depth": 3380.476190476191, "density": 8.718457669922438}, {"pressure": 5817.838808149746, "depth": 3390.4238095238097, "density": 8.718509243100723}, {"pressure": 5832.600542338111, "depth": 3400.3714285714286, "density": 8.718563755878025}, {"pressure": 5847.362276526477, "depth": 3410.3190476190475, "density": 8.718710651068104}, {"pressure": 5862.124356204956, "depth": 3420.2666666666664, "density": 8.718861866442818}, {"pressure": 5876.886435883435, "depth": 3430.214285714286, "density": 8.718920294346892}, {"pressure": 5891.648868460986, "depth": 3440.161904761905, "density": 8.718979962450291}, {"pressure": 5906.4113010385345, "depth": 3450.109523809524, "density": 8.719132838741817}, {"pressure": 5921.174091291811, "depth": 3460.057142857143, "density": 8.719287266335144}, {"pressure": 5935.936881545089, "depth": 3470.004761904762, "density": 8.719347787440373}, {"pressure": 5950.700031623153, "depth": 3479.9523809523807, "density": 8.719502408236156}, {"pressure": 5965.46318170122, "depth": 3489.9, "density": 8.719563224063444}, {"pressure": 5965.611664962304, "depth": 3490, "density": 8.72384917696526}, {"pressure": 5965.760148223389, "depth": 3490.1, "density": 8.724640271703427}, {"pressure": 5980.555585164963, "depth": 3500.06338028169, "density": 8.7246060964745}, {"pressure": 5995.351022106537, "depth": 3510.0267605633803, "density": 8.724688183826375}, {"pressure": 6010.146541235034, "depth": 3519.9901408450705, "density": 8.724772376972796}, {"pressure": 6024.942060363532, "depth": 3529.9535211267603, "density": 8.724739988938364}, {"pressure": 6039.737418695743, "depth": 3539.9169014084505, "density": 8.724709280719752}, {"pressure": 6054.532777027955, "depth": 3549.8802816901407, "density": 8.724795726477518}, {"pressure": 6069.32540976033, "depth": 3559.843661971831, "density": 8.724884242758476}, {"pressure": 6084.118042492706, "depth": 3569.807042253521, "density": 8.72485533545026}, {"pressure": 6098.898038446542, "depth": 3579.7704225352113, "density": 8.72482807408172}, {"pressure": 6113.67803440038, "depth": 3589.7338028169015, "density": 8.724918644389552}, {"pressure": 6128.430341867595, "depth": 3599.6971830985913, "density": 8.725010881148144}, {"pressure": 6143.18264933481, "depth": 3609.6605633802815, "density": 8.724985398801486}, {"pressure": 6157.89931577206, "depth": 3619.6239436619717, "density": 8.724961287125781}, {"pressure": 6172.615982209308, "depth": 3629.587323943662, "density": 8.725055201498158}, {"pressure": 6187.289101215702, "depth": 3639.550704225352, "density": 8.72503246801654}, {"pressure": 6201.962220222096, "depth": 3649.5140845070423, "density": 8.725127858836586}, {"pressure": 6216.58390803029, "depth": 3659.4774647887325, "density": 8.725224529275165}, {"pressure": 6231.2055958384835, "depth": 3669.4408450704223, "density": 8.725203243084977}, {"pressure": 6245.7679956093625, "depth": 3679.4042253521125, "density": 8.725301131167708}, {"pressure": 6260.33039538024, "depth": 3689.3676056338027, "density": 8.725281199882321}, {"pressure": 6274.825681754691, "depth": 3699.330985915493, "density": 8.72526243324629}, {"pressure": 6289.320968129142, "depth": 3709.294366197183, "density": 8.725361466908288}, {"pressure": 6303.741351399518, "depth": 3719.257746478873, "density": 8.725343868673672}, {"pressure": 6318.161734669894, "depth": 3729.221126760563, "density": 8.72544384620073}, {"pressure": 6332.499464892692, "depth": 3739.1845070422532, "density": 8.725544566950703}, {"pressure": 6346.837195115491, "depth": 3749.1478873239435, "density": 8.725528111576253}, {"pressure": 6361.084566480935, "depth": 3759.1112676056337, "density": 8.725512536314124}, {"pressure": 6375.3319378463775, "depth": 3769.074647887324, "density": 8.725613985661}, {"pressure": 6389.4812923632635, "depth": 3779.038028169014, "density": 8.725715895316144}, {"pressure": 6403.630646880148, "depth": 3789.001408450704, "density": 8.72570133893207}, {"pressure": 6417.674377913056, "depth": 3798.964788732394, "density": 8.725687760567133}, {"pressure": 6431.718108945963, "depth": 3808.9281690140842, "density": 8.72579013170727}, {"pressure": 6445.648666831363, "depth": 3818.8915492957744, "density": 8.725777317734948}, {"pressure": 6459.579224716764, "depth": 3828.8549295774646, "density": 8.725879959384283}, {"pressure": 6473.389122249872, "depth": 3838.818309859155, "density": 8.725869264281345}, {"pressure": 6487.199019782982, "depth": 3848.781690140845, "density": 8.725973761344733}, {"pressure": 6500.880841698801, "depth": 3858.745070422535, "density": 8.72608060417617}, {"pressure": 6514.562663614622, "depth": 3868.708450704225, "density": 8.726073147861824}, {"pressure": 6528.10906332489, "depth": 3878.671830985915, "density": 8.726185206260807}, {"pressure": 6541.655463035158, "depth": 3888.6352112676054, "density": 8.726182997183383}, {"pressure": 6555.059121165001, "depth": 3898.5985915492956, "density": 8.726181238514418}, {"pressure": 6568.462779294843, "depth": 3908.561971830986, "density": 8.72629217272273}, {"pressure": 6581.716031182935, "depth": 3918.525352112676, "density": 8.726290849625327}, {"pressure": 6594.969283071025, "depth": 3928.488732394366, "density": 8.726401282766368}, {"pressure": 6608.138688104985, "depth": 3938.452112676056, "density": 8.72651225184041}, {"pressure": 6621.308093138945, "depth": 3948.415492957746, "density": 8.726511897602899}, {"pressure": 6634.476406276574, "depth": 3958.3788732394364, "density": 8.7265129808163}, {"pressure": 6647.644719414205, "depth": 3968.3422535211266, "density": 8.726625953156473}, {"pressure": 6660.813202984031, "depth": 3978.305633802817, "density": 8.726740854854686}, {"pressure": 6673.981686553855, "depth": 3988.269014084507, "density": 8.726743496680704}, {"pressure": 6687.150345616624, "depth": 3998.232394366197, "density": 8.72674768861073}, {"pressure": 6700.3190046793925, "depth": 4008.195774647887, "density": 8.726864620460704}, {"pressure": 6713.487843950564, "depth": 4018.159154929577, "density": 8.726983485987782}, {"pressure": 6726.656683221736, "depth": 4028.1225352112674, "density": 8.72698923153862}, {"pressure": 6739.8257079898485, "depth": 4038.0859154929576, "density": 8.727110088202766}, {"pressure": 6752.99473275796, "depth": 4048.049295774648, "density": 8.727117334714555}, {"pressure": 6766.163948255738, "depth": 4058.012676056338, "density": 8.727240186084735}, {"pressure": 6779.333163753517, "depth": 4067.976056338028, "density": 8.727248931492749}, {"pressure": 6792.502575216455, "depth": 4077.939436619718, "density": 8.727373781131783}, {"pressure": 6805.671986679392, "depth": 4087.902816901408, "density": 8.727384023163635}, {"pressure": 6818.841599295333, "depth": 4097.866197183099, "density": 8.727395751799103}, {"pressure": 6832.011211911274, "depth": 4107.829577464789, "density": 8.727522653560845}, {"pressure": 6845.181030792246, "depth": 4117.792957746478, "density": 8.727535888594325}, {"pressure": 6858.350849673221, "depth": 4127.756338028169, "density": 8.72766479597274}, {"pressure": 6871.520880068529, "depth": 4137.71971830986, "density": 8.727795663608738}, {"pressure": 6884.690910463835, "depth": 4147.683098591549, "density": 8.727810413813689}, {"pressure": 6897.861157810821, "depth": 4157.646478873239, "density": 8.727826550012594}, {"pressure": 6911.031405157806, "depth": 4167.609859154929, "density": 8.727959474502528}, {"pressure": 6924.201874779735, "depth": 4177.573239436619, "density": 8.727977093298799}, {"pressure": 6937.372344401663, "depth": 4187.536619718309, "density": 8.728112033261587}, {"pressure": 6950.5430415473065, "depth": 4197.5, "density": 8.728248940405871}, {"pressure": 6963.713738692947, "depth": 4207.46338028169, "density": 8.728268042457175}, {"pressure": 6976.884668564841, "depth": 4217.4267605633795, "density": 8.72828857465436}, {"pressure": 6990.0555984367375, "depth": 4227.39014084507, "density": 8.728427542207557}, {"pressure": 7003.226765709208, "depth": 4237.353521126761, "density": 8.728449642757285}, {"pressure": 7016.397932981677, "depth": 4247.316901408451, "density": 8.728590636091926}, {"pressure": 7029.569342777187, "depth": 4257.28028169014, "density": 8.728733615704126}, {"pressure": 7042.740752572698, "depth": 4267.243661971831, "density": 8.728757229558063}, {"pressure": 7055.912410181042, "depth": 4277.207042253522, "density": 8.728902242969488}, {"pressure": 7069.084067789386, "depth": 4287.170422535211, "density": 8.728927290180154}, {"pressure": 7082.255978791232, "depth": 4297.133802816901, "density": 8.729074541900276}, {"pressure": 7095.427889793079, "depth": 4307.097183098591, "density": 8.72910118662829}, {"pressure": 7108.600064500591, "depth": 4317.060563380281, "density": 8.72913206116744}, {"pressure": 7121.772239208105, "depth": 4327.023943661971, "density": 8.729283911000964}, {"pressure": 7134.944684626231, "depth": 4336.987323943662, "density": 8.729437161087489}, {"pressure": 7148.117130044356, "depth": 4346.950704225352, "density": 8.729468270933074}, {"pressure": 7161.289850353995, "depth": 4356.9140845070415, "density": 8.729500776640107}, {"pressure": 7174.462570663635, "depth": 4366.877464788732, "density": 8.729656113777885}, {"pressure": 7187.635571109941, "depth": 4376.840845070423, "density": 8.729690052759269}, {"pressure": 7200.808571556245, "depth": 4386.804225352113, "density": 8.729847437392609}, {"pressure": 7213.981857382019, "depth": 4396.767605633802, "density": 8.730006831042772}, {"pressure": 7227.155143207795, "depth": 4406.730985915493, "density": 8.730042239308371}, {"pressure": 7240.328719689525, "depth": 4416.694366197184, "density": 8.730203686134821}, {"pressure": 7253.502296171254, "depth": 4426.657746478873, "density": 8.730240477037645}, {"pressure": 7266.676168749623, "depth": 4436.621126760563, "density": 8.730278613013123}, {"pressure": 7279.850041327992, "depth": 4446.584507042253, "density": 8.730442158073812}, {"pressure": 7293.024214951294, "depth": 4456.547887323943, "density": 8.730607720994259}, {"pressure": 7306.198388574598, "depth": 4466.511267605633, "density": 8.730647427103156}, {"pressure": 7319.372868110727, "depth": 4476.474647887324, "density": 8.730688499587146}, {"pressure": 7332.547347646855, "depth": 4486.438028169014, "density": 8.730856167837983}, {"pressure": 7345.722138327035, "depth": 4496.4014084507035, "density": 8.731025864125632}, {"pressure": 7358.896929007217, "depth": 4506.364788732394, "density": 8.731068367427525}, {"pressure": 7372.07203606498, "depth": 4516.328169014085, "density": 8.7311122134001}, {"pressure": 7385.24714312274, "depth": 4526.2915492957745, "density": 8.731284021059075}, {"pressure": 7398.422571785686, "depth": 4536.254929577464, "density": 8.731457863993754}, {"pressure": 7411.598000448635, "depth": 4546.218309859155, "density": 8.73150312341065}, {"pressure": 7424.773756016721, "depth": 4556.181690140846, "density": 8.731549644531512}, {"pressure": 7437.949511584805, "depth": 4566.145070422535, "density": 8.731725603433903}, {"pressure": 7451.125599762805, "depth": 4576.108450704225, "density": 8.731903605922849}, {"pressure": 7464.301687940804, "depth": 4586.071830985915, "density": 8.731951426519148}, {"pressure": 7477.478120013056, "depth": 4596.035211267605, "density": 8.732135923328487}, {"pressure": 7490.654552085309, "depth": 4605.998591549295, "density": 8.732189173134328}, {"pressure": 7503.831340445799, "depth": 4615.961971830986, "density": 8.732244174632058}, {"pressure": 7517.0081288062875, "depth": 4625.925352112676, "density": 8.732431112261652}, {"pressure": 7530.185278703584, "depth": 4635.888732394365, "density": 8.732620085554515}, {"pressure": 7543.362428600883, "depth": 4645.852112676056, "density": 8.73267641745359}, {"pressure": 7556.539945132315, "depth": 4655.815492957747, "density": 8.732867466221743}, {"pressure": 7569.717461663746, "depth": 4665.7788732394365, "density": 8.732925079719374}, {"pressure": 7582.895349890977, "depth": 4675.742253521126, "density": 8.733118204027909}, {"pressure": 7596.073238118206, "depth": 4685.705633802816, "density": 8.733177095632351}, {"pressure": 7609.251502830565, "depth": 4695.669014084507, "density": 8.733237185861322}, {"pressure": 7622.429767542924, "depth": 4705.632394366197, "density": 8.733432418010837}, {"pressure": 7635.608413802892, "depth": 4715.595774647887, "density": 8.733629700080474}, {"pressure": 7648.787060062859, "depth": 4725.559154929577, "density": 8.733691056877658}, {"pressure": 7661.966092938895, "depth": 4735.522535211267, "density": 8.733890427516247}, {"pressure": 7675.145125814933, "depth": 4745.485915492957, "density": 8.733953011419404}, {"pressure": 7688.324550352026, "depth": 4755.449295774648, "density": 8.734016772326454}, {"pressure": 7701.503974889118, "depth": 4765.412676056338, "density": 8.734218268717163}, {"pressure": 7714.683796727436, "depth": 4775.376056338027, "density": 8.73442308896146}, {"pressure": 7727.863618565755, "depth": 4785.339436619718, "density": 8.734488624137557}, {"pressure": 7741.043846666993, "depth": 4795.302816901409, "density": 8.734556216237593}, {"pressure": 7754.224074768229, "depth": 4805.2661971830985, "density": 8.734763729817525}, {"pressure": 7767.404714476446, "depth": 4815.229577464788, "density": 8.734973306787397}, {"pressure": 7780.5853541846645, "depth": 4825.192957746478, "density": 8.735042083558989}, {"pressure": 7793.76641062948, "depth": 4835.156338028169, "density": 8.735253756708573}, {"pressure": 7806.947467074295, "depth": 4845.119718309859, "density": 8.735323567613218}, {"pressure": 7820.128945394243, "depth": 4855.083098591549, "density": 8.735394453468583}, {"pressure": 7833.310423714191, "depth": 4865.046478873239, "density": 8.735608261020651}, {"pressure": 7846.492328801714, "depth": 4875.009859154929, "density": 8.735824141517014}, {"pressure": 7859.67423388924, "depth": 4884.973239436619, "density": 8.735896151396032}, {"pressure": 7872.856570604615, "depth": 4894.93661971831, "density": 8.735969197863968}, {"pressure": 7886.0389073199885, "depth": 4904.9, "density": 8.73618721760049}, {"pressure": 7886.171172400873, "depth": 4905, "density": 8.73278057580183}, {"pressure": 7886.303437481758, "depth": 4905.1, "density": 8.732300556053032}, {"pressure": 7899.046378499045, "depth": 4914.734807692308, "density": 8.732564644232736}, {"pressure": 7911.7893195163315, "depth": 4924.369615384616, "density": 8.7327482969646}, {"pressure": 7924.532899154556, "depth": 4934.004423076924, "density": 8.732932333302418}, {"pressure": 7937.276478792781, "depth": 4943.639230769231, "density": 8.733197360878963}, {"pressure": 7950.020698788756, "depth": 4953.274038461539, "density": 8.73338171704157}, {"pressure": 7962.764918784732, "depth": 4962.908846153847, "density": 8.733647674061963}, {"pressure": 7975.509780963339, "depth": 4972.5436538461545, "density": 8.733832330637593}, {"pressure": 7988.254643141947, "depth": 4982.178461538462, "density": 8.734099217984218}, {"pressure": 8001.000149301447, "depth": 4991.81326923077, "density": 8.73436702551569}, {"pressure": 8013.745655460945, "depth": 5001.448076923077, "density": 8.734551972778766}, {"pressure": 8026.4918073710605, "depth": 5011.0828846153845, "density": 8.734737166471525}, {"pressure": 8039.237959281176, "depth": 5020.717692307692, "density": 8.73500591711064}, {"pressure": 8051.98475868098, "depth": 5030.3525, "density": 8.735275589930158}, {"pressure": 8064.7315580807835, "depth": 5039.987307692308, "density": 8.73546102802918}, {"pressure": 8077.477936263619, "depth": 5049.622115384615, "density": 8.735929431482745}, {"pressure": 8090.224314446456, "depth": 5059.256923076923, "density": 8.736196860791608}, {"pressure": 8102.971171469955, "depth": 5068.891730769231, "density": 8.736468731407468}, {"pressure": 8115.718028493453, "depth": 5078.526538461539, "density": 8.736643913324837}, {"pressure": 8128.465584728031, "depth": 5088.161346153846, "density": 8.736916711908385}, {"pressure": 8141.213140962609, "depth": 5097.796153846154, "density": 8.737092053460453}, {"pressure": 8153.961398004837, "depth": 5107.430961538462, "density": 8.737267512663326}, {"pressure": 8166.709655047065, "depth": 5117.06576923077, "density": 8.737541251518808}, {"pressure": 8179.458614442162, "depth": 5126.700576923077, "density": 8.737716806870687}, {"pressure": 8192.20757383726, "depth": 5136.335384615385, "density": 8.73799147531111}, {"pressure": 8204.957237077224, "depth": 5145.970192307692, "density": 8.738267062960588}, {"pressure": 8217.70690031719, "depth": 5155.605, "density": 8.738442689778045}, {"pressure": 8230.4572688697, "depth": 5165.239807692307, "density": 8.738618273752188}, {"pressure": 8243.207637422212, "depth": 5174.874615384615, "density": 8.738894804599514}, {"pressure": 8255.958713100084, "depth": 5184.509423076923, "density": 8.739070263198718}, {"pressure": 8268.709788777956, "depth": 5194.1442307692305, "density": 8.739347727403437}, {"pressure": 8281.461572991486, "depth": 5203.779038461538, "density": 8.739626113469658}, {"pressure": 8294.213357205013, "depth": 5213.413846153846, "density": 8.73980152600182}, {"pressure": 8306.965849832473, "depth": 5223.048653846154, "density": 8.740080014755833}, {"pressure": 8319.718342459935, "depth": 5232.683461538461, "density": 8.74025410954473}, {"pressure": 8332.471544883427, "depth": 5242.318269230769, "density": 8.740429981947093}, {"pressure": 8345.224747306916, "depth": 5251.953076923077, "density": 8.740711183464683}, {"pressure": 8357.97866559712, "depth": 5261.587884615385, "density": 8.740993956311991}, {"pressure": 8370.732583887322, "depth": 5271.222692307692, "density": 8.741170191484253}, {"pressure": 8383.487219215642, "depth": 5280.8575, "density": 8.741346106118366}, {"pressure": 8396.241854543963, "depth": 5290.492307692308, "density": 8.74162982224124}, {"pressure": 8408.997207650871, "depth": 5300.1271153846155, "density": 8.741914462345397}, {"pressure": 8421.752560757777, "depth": 5309.761923076923, "density": 8.742089996001713}, {"pressure": 8434.508632241985, "depth": 5319.396730769231, "density": 8.742265036919177}, {"pressure": 8447.26470372619, "depth": 5329.031538461538, "density": 8.742550622352049}, {"pressure": 8460.021494024259, "depth": 5338.666346153846, "density": 8.742725076197909}, {"pressure": 8472.778284322329, "depth": 5348.301153846153, "density": 8.743011598020269}, {"pressure": 8485.535793683848, "depth": 5357.935961538461, "density": 8.743334983863699}, {"pressure": 8498.293303045368, "depth": 5367.570769230769, "density": 8.743658359446009}, {"pressure": 8511.051531502355, "depth": 5377.2055769230765, "density": 8.743981740349792}, {"pressure": 8523.809759959342, "depth": 5386.840384615384, "density": 8.744305110991878}, {"pressure": 8536.568707287972, "depth": 5396.475192307692, "density": 8.744628486949427}, {"pressure": 8549.3276546166, "depth": 5406.11, "density": 8.74494897128692}, {"pressure": 8549.460085456943, "depth": 5406.21, "density": 8.74393545285845}, {"pressure": 8549.592516297289, "depth": 5406.31, "density": 8.743938456544807}, {"pressure": 8561.044950500944, "depth": 5414.9575, "density": 8.744198209526507}, {"pressure": 8572.497384704599, "depth": 5423.605, "density": 8.744455223158}, {"pressure": 8583.950710014407, "depth": 5432.2525, "density": 8.744707498087987}, {"pressure": 8595.404035324216, "depth": 5440.9, "density": 8.744955108401266}, {"pressure": 8595.536487568532, "depth": 5441, "density": 8.74457155573372}, {"pressure": 8595.66893981285, "depth": 5441.1, "density": 8.7445764354215}, {"pressure": 8607.399008246139, "depth": 5449.955714285715, "density": 8.745008558853193}, {"pressure": 8619.129076679428, "depth": 5458.811428571429, "density": 8.745440646492147}, {"pressure": 8630.860071465491, "depth": 5467.667142857143, "density": 8.745872718417761}, {"pressure": 8642.591066251556, "depth": 5476.522857142857, "density": 8.746304754547806}, {"pressure": 8654.322983616139, "depth": 5485.378571428571, "density": 8.746736774877059}, {"pressure": 8666.05490098072, "depth": 5494.234285714286, "density": 8.747168759407927}, {"pressure": 8677.787736057287, "depth": 5503.09, "density": 8.747600728026917}, {"pressure": 8689.520571133851, "depth": 5511.9457142857145, "density": 8.748032660844723}, {"pressure": 8701.25431752613, "depth": 5520.801428571429, "density": 8.748464577606466}, {"pressure": 8712.988063918408, "depth": 5529.657142857143, "density": 8.748896458564243}, {"pressure": 8724.722712953142, "depth": 5538.512857142858, "density": 8.7493283232725}, {"pressure": 8736.457361987876, "depth": 5547.368571428571, "density": 8.74976015217404}, {"pressure": 8748.192901284132, "depth": 5556.2242857142855, "density": 8.749990568336383}, {"pressure": 8759.92844058039, "depth": 5565.08, "density": 8.750395338119432}, {"pressure": 8760.04770803896, "depth": 5565.17, "density": 8.750395338119432}, {"pressure": 9436.274674555762, "depth": 5565.1900000000005, "density": 7.366746745194428}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978, "density": 6.042353224585787}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "ovzgNoGe1b", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 4789.801500516719, "depth": 2072, "density": 10.7510484291191}, {"pressure": 4814.298000917049, "depth": 2085.37, "density": 10.7510484291191}, {"pressure": 4838.786914672316, "depth": 2098.7400000000002, "density": 10.754959024525355}, {"pressure": 4863.26845445362, "depth": 2112.11, "density": 10.758968355390564}, {"pressure": 4863.522969969829, "depth": 2112.31, "density": 7.4667216990344185}, {"pressure": 4885.036193884555, "depth": 2130.84, "density": 6.821220751000591}, {"pressure": 4906.554331148926, "depth": 2149.37, "density": 6.823147351111552}, {"pressure": 4928.078305254564, "depth": 2167.9, "density": 6.824629325448259}, {"pressure": 4928.31065423307, "depth": 2168.1, "density": 6.816421982415275}, {"pressure": 4951.443691813084, "depth": 2188.0091176470587, "density": 6.826817457850115}, {"pressure": 4974.584066437958, "depth": 2207.9182352941175, "density": 6.82932619455704}, {"pressure": 4997.731750188861, "depth": 2227.8273529411763, "density": 6.831139706269267}, {"pressure": 5020.88673167801, "depth": 2247.736470588235, "density": 6.833293350237927}, {"pressure": 5044.049013849802, "depth": 2267.645588235294, "density": 6.835447863131216}, {"pressure": 5067.218610357365, "depth": 2287.554705882353, "density": 6.837606405214577}, {"pressure": 5090.395527836949, "depth": 2307.463823529412, "density": 6.839766905729492}, {"pressure": 5113.579773955358, "depth": 2327.3729411764707, "density": 6.84227381294464}, {"pressure": 5136.771357325336, "depth": 2347.2820588235295, "density": 6.844094973594546}, {"pressure": 5159.970287122302, "depth": 2367.1911764705883, "density": 6.846262986154141}, {"pressure": 5183.17657287138, "depth": 2387.100294117647, "density": 6.848433809684197}, {"pressure": 5206.390224328896, "depth": 2407.009411764706, "density": 6.850607512414659}, {"pressure": 5229.6112514169, "depth": 2426.9185294117647, "density": 6.853128833366347}, {"pressure": 5252.839664189081, "depth": 2446.8276470588235, "density": 6.854963741047014}, {"pressure": 5276.075472808269, "depth": 2466.7367647058823, "density": 6.857146338005392}, {"pressure": 5299.318687532202, "depth": 2486.645882352941, "density": 6.859331962136632}, {"pressure": 5322.5693187060315, "depth": 2506.5550000000003, "density": 6.861520639237927}, {"pressure": 5345.827311076514, "depth": 2526.4641176470586, "density": 6.863693010490322}, {"pressure": 5369.09187914131, "depth": 2546.373235294118, "density": 6.86597890766978}, {"pressure": 5392.3627862489, "depth": 2566.2823529411767, "density": 6.867504293485389}, {"pressure": 5415.640041214832, "depth": 2586.1914705882355, "density": 6.8693776172975385}, {"pressure": 5438.923652775731, "depth": 2606.1005882352943, "density": 6.871253519385409}, {"pressure": 5462.2136296508925, "depth": 2626.009705882353, "density": 6.8731319946343925}, {"pressure": 5485.509980576347, "depth": 2645.918823529412, "density": 6.875013047983561}, {"pressure": 5508.812714323544, "depth": 2665.8279411764706, "density": 6.877242592842677}, {"pressure": 5532.121840772956, "depth": 2685.7370588235294, "density": 6.87878324762496}, {"pressure": 5555.4374036069, "depth": 2705.646176470588, "density": 6.880682696503668}, {"pressure": 5578.759437164634, "depth": 2725.5552941176475, "density": 6.882592279279992}, {"pressure": 5602.087950535851, "depth": 2745.464411764706, "density": 6.884504544526621}, {"pressure": 5625.422952709602, "depth": 2765.373529411765, "density": 6.886419462542454}, {"pressure": 5648.76445264419, "depth": 2785.282647058824, "density": 6.888683502650836}, {"pressure": 5672.112459305928, "depth": 2805.1917647058826, "density": 6.890257232022873}, {"pressure": 5695.466981691722, "depth": 2825.1008823529414, "density": 6.89218009488032}, {"pressure": 5718.828029602085, "depth": 2845.01, "density": 6.89410584997795}, {"pressure": 5719.172274315401, "depth": 2845.21, "density": 10.099107154577815}, {"pressure": 5753.469164060663, "depth": 2863.9433333333336, "density": 10.757126791647588}, {"pressure": 5787.767396360512, "depth": 2882.6766666666667, "density": 10.756972856325167}, {"pressure": 5822.066974201328, "depth": 2901.4100000000003, "density": 10.757394859055042}, {"pressure": 5822.323886494672, "depth": 2901.61, "density": 7.57491050233326}, {"pressure": 5841.404710830147, "depth": 2917.8433333333332, "density": 6.905676579445551}, {"pressure": 5860.489801416226, "depth": 2934.076666666667, "density": 6.907646690812454}, {"pressure": 5879.579205312817, "depth": 2950.31, "density": 6.9092078479338}, {"pressure": 5879.923578028184, "depth": 2950.5099999999998, "density": 10.153630503239402}, {"pressure": 5910.129903114247, "depth": 2967.0066666666667, "density": 10.758321707537235}, {"pressure": 5940.33736422191, "depth": 2983.503333333333, "density": 10.758073280916497}, {"pressure": 5970.546162102061, "depth": 3000, "density": 10.759202420905737}, {"pressure": 5981.615723471987, "depth": 3005.21, "density": 12.485494883102163}, {"pressure": 5981.91533384468, "depth": 3005.41, "density": 8.789669503722427}, {"pressure": 6004.539904620472, "depth": 3022.0325, "density": 7.996831721077149}, {"pressure": 6027.167516138171, "depth": 3038.6549999999997, "density": 7.997906495117058}, {"pressure": 6049.798175774911, "depth": 3055.2775, "density": 7.99946577219186}, {"pressure": 6072.431890938443, "depth": 3071.9, "density": 8.00006387653652}, {"pressure": 6072.704235818802, "depth": 3072.1, "density": 7.989781755081508}, {"pressure": 6099.798292135645, "depth": 3091.995238095238, "density": 8.00139249212034}, {"pressure": 6126.896762938162, "depth": 3111.890476190476, "density": 8.002696174083422}, {"pressure": 6153.9996610027965, "depth": 3131.785714285714, "density": 8.004003629174324}, {"pressure": 6181.106999164422, "depth": 3151.6809523809525, "density": 8.00531487464869}, {"pressure": 6208.218790316694, "depth": 3171.5761904761903, "density": 8.0066299278661}, {"pressure": 6235.335047411888, "depth": 3191.4714285714285, "density": 8.007948806137343}, {"pressure": 6262.455783459999, "depth": 3211.366666666667, "density": 8.009271526509373}, {"pressure": 6289.581011528481, "depth": 3231.2619047619046, "density": 8.010598105949889}, {"pressure": 6316.71074474199, "depth": 3251.157142857143, "density": 8.011928561352113}, {"pressure": 6343.845002487066, "depth": 3271.052380952381, "density": 8.013668087454429}, {"pressure": 6370.983878093829, "depth": 3290.947619047619, "density": 8.014628484755374}, {"pressure": 6398.127409647106, "depth": 3310.842857142857, "density": 8.016003474718088}, {"pressure": 6425.275611320595, "depth": 3330.7380952380954, "density": 8.017382650444421}, {"pressure": 6452.4284973344975, "depth": 3350.633333333333, "density": 8.018766025667977}, {"pressure": 6479.586081954232, "depth": 3370.5285714285715, "density": 8.020153613742304}, {"pressure": 6506.748379490912, "depth": 3390.4238095238097, "density": 8.021545428161687}, {"pressure": 6533.915361233895, "depth": 3410.3190476190475, "density": 8.022928763779682}, {"pressure": 6561.086542300357, "depth": 3430.214285714286, "density": 8.024168904235921}, {"pressure": 6588.261822879068, "depth": 3450.109523809524, "density": 8.025379568528747}, {"pressure": 6615.441213578711, "depth": 3470.004761904762, "density": 8.026593365768269}, {"pressure": 6642.624725066872, "depth": 3489.9, "density": 8.027810313350063}, {"pressure": 6642.898012520548, "depth": 3490.1, "density": 8.017434028498583}, {"pressure": 6670.128561305448, "depth": 3510.0267605633803, "density": 8.029173422811125}, {"pressure": 6697.362843291981, "depth": 3529.9535211267603, "density": 8.029870659687724}, {"pressure": 6724.600551350303, "depth": 3549.8802816901407, "density": 8.031284399286342}, {"pressure": 6751.838387269392, "depth": 3569.807042253521, "density": 8.032533095680748}, {"pressure": 6779.063583673085, "depth": 3589.7338028169015, "density": 8.036075932137447}, {"pressure": 6806.2567372787935, "depth": 3609.6605633802815, "density": 8.041586082663827}, {"pressure": 6833.407577948613, "depth": 3629.587323943662, "density": 8.04895121999289}, {"pressure": 6860.5058844924515, "depth": 3649.5140845070423, "density": 8.056988132933794}, {"pressure": 6887.541455567159, "depth": 3669.4408450704223, "density": 8.066950250393544}, {"pressure": 6914.504115144092, "depth": 3689.3676056338027, "density": 8.07764660718395}, {"pressure": 6941.383717981808, "depth": 3709.294366197183, "density": 8.089940071301276}, {"pressure": 6968.170155101943, "depth": 3729.221126760563, "density": 8.10430264315368}, {"pressure": 6994.853359261978, "depth": 3749.1478873239435, "density": 8.119543205506995}, {"pressure": 7021.423310423631, "depth": 3769.074647887324, "density": 8.136562184023198}, {"pressure": 7047.87004121695, "depth": 3789.001408450704, "density": 8.154153875812883}, {"pressure": 7074.183642391249, "depth": 3808.9281690140842, "density": 8.174966828872309}, {"pressure": 7100.354268245154, "depth": 3828.8549295774646, "density": 8.196953511728276}, {"pressure": 7126.3721117417535, "depth": 3848.781690140845, "density": 8.21974450419692}, {"pressure": 7152.22715080967, "depth": 3868.708450704225, "density": 8.245114203331404}, {"pressure": 7177.90978665745, "depth": 3888.6352112676054, "density": 8.2724142277812}, {"pressure": 7203.410502112611, "depth": 3908.561971830986, "density": 8.301314794807425}, {"pressure": 7228.719284019282, "depth": 3928.488732394366, "density": 8.33221563007533}, {"pressure": 7253.9221924773055, "depth": 3948.415492957746, "density": 8.35077620773721}, {"pressure": 7279.126315409379, "depth": 3968.3422535211266, "density": 8.351650245193559}, {"pressure": 7304.3332885716345, "depth": 3988.269014084507, "density": 8.352594698832194}, {"pressure": 7329.543120762705, "depth": 4008.195774647887, "density": 8.353070329675164}, {"pressure": 7354.755820845649, "depth": 4028.1225352112674, "density": 8.354492374014088}, {"pressure": 7379.971397748022, "depth": 4048.049295774648, "density": 8.355445638277748}, {"pressure": 7405.189860460209, "depth": 4067.976056338028, "density": 8.355929981787035}, {"pressure": 7430.411218035046, "depth": 4087.902816901408, "density": 8.357361124673663}, {"pressure": 7455.6354795874595, "depth": 4107.829577464789, "density": 8.358323388074183}, {"pressure": 7480.862654293438, "depth": 4127.756338028169, "density": 8.35928869203476}, {"pressure": 7506.092751390189, "depth": 4147.683098591549, "density": 8.359784939319795}, {"pressure": 7531.325780176975, "depth": 4167.609859154929, "density": 8.36122850305454}, {"pressure": 7556.561750015171, "depth": 4187.536619718309, "density": 8.362203051258621}, {"pressure": 7581.800670327343, "depth": 4207.46338028169, "density": 8.363180721727863}, {"pressure": 7607.042550599779, "depth": 4227.39014084507, "density": 8.363689197565735}, {"pressure": 7632.287400383287, "depth": 4247.316901408451, "density": 8.365145514189273}, {"pressure": 7657.535229289767, "depth": 4267.243661971831, "density": 8.366132677804641}, {"pressure": 7682.786046991043, "depth": 4287.170422535211, "density": 8.367123046279096}, {"pressure": 7708.0398604320435, "depth": 4307.097183098591, "density": 8.36764315471708}, {"pressure": 7733.296527479424, "depth": 4327.023943661971, "density": 8.36906128840564}, {"pressure": 7758.555929860188, "depth": 4346.950704225352, "density": 8.369967669785563}, {"pressure": 7783.818075568602, "depth": 4366.877464788732, "density": 8.370876700149601}, {"pressure": 7809.082972668621, "depth": 4386.804225352113, "density": 8.371315633874339}, {"pressure": 7834.350629293565, "depth": 4406.730985915493, "density": 8.372702800090668}, {"pressure": 7859.6210536458275, "depth": 4426.657746478873, "density": 8.373619915539617}, {"pressure": 7884.894253997142, "depth": 4446.584507042253, "density": 8.374066847826235}, {"pressure": 7910.170238688348, "depth": 4466.511267605633, "density": 8.375462392114892}, {"pressure": 7935.44901612915, "depth": 4486.438028169014, "density": 8.376387798958408}, {"pressure": 7960.7305947971645, "depth": 4506.364788732394, "density": 8.377316014949743}, {"pressure": 7986.014983237263, "depth": 4526.2915492957745, "density": 8.377773928926327}, {"pressure": 8011.302190061176, "depth": 4546.218309859155, "density": 8.379180963383531}, {"pressure": 8036.592223947181, "depth": 4566.145070422535, "density": 8.380117740031924}, {"pressure": 8061.8850936399285, "depth": 4586.071830985915, "density": 8.381057414312055}, {"pressure": 8087.180847130827, "depth": 4605.998591549295, "density": 8.381539644934474}, {"pressure": 8112.479542095461, "depth": 4625.925352112676, "density": 8.382987679194077}, {"pressure": 8137.781188779072, "depth": 4645.852112676056, "density": 8.383965762208584}, {"pressure": 8163.0857964306915, "depth": 4665.7788732394365, "density": 8.38494690998523}, {"pressure": 8188.393374352137, "depth": 4685.705633802816, "density": 8.385457572638906}, {"pressure": 8213.703931899301, "depth": 4705.632394366197, "density": 8.386918470222533}, {"pressure": 8239.01747848319, "depth": 4725.559154929577, "density": 8.387908918863202}, {"pressure": 8264.334023566516, "depth": 4745.485915492957, "density": 8.388902503072819}, {"pressure": 8289.653576662484, "depth": 4765.412676056338, "density": 8.389425448118066}, {"pressure": 8314.976098047964, "depth": 4785.339436619718, "density": 8.390882813416832}, {"pressure": 8340.301432349275, "depth": 4805.2661971830985, "density": 8.391814902553243}, {"pressure": 8365.629575057721, "depth": 4825.192957746478, "density": 8.39227154549004}, {"pressure": 8390.9605344731, "depth": 4845.119718309859, "density": 8.393678843044922}, {"pressure": 8416.294318953927, "depth": 4865.046478873239, "density": 8.39461495808432}, {"pressure": 8441.630936916, "depth": 4884.973239436619, "density": 8.39555386178768}, {"pressure": 8466.970396831302, "depth": 4904.9, "density": 8.396021408800332}, {"pressure": 8467.224737206201, "depth": 4905.1, "density": 8.431167885215727}, {"pressure": 8491.731392805828, "depth": 4924.369615384616, "density": 8.397007186711908}, {"pressure": 8516.240919528234, "depth": 4943.639230769231, "density": 8.39848140460438}, {"pressure": 8540.753319956442, "depth": 4962.908846153847, "density": 8.399466114142996}, {"pressure": 8565.268596703847, "depth": 4982.178461538462, "density": 8.39996115321909}, {"pressure": 8589.786752413946, "depth": 5001.448076923077, "density": 8.401438230066496}, {"pressure": 8614.307789760147, "depth": 5020.717692307692, "density": 8.402425657017204}, {"pressure": 8638.83171144552, "depth": 5039.987307692308, "density": 8.403414010205887}, {"pressure": 8663.358520684505, "depth": 5059.256923076923, "density": 8.40391266811628}, {"pressure": 8687.88822117758, "depth": 5078.526538461539, "density": 8.405394187529536}, {"pressure": 8712.420815664665, "depth": 5097.796153846154, "density": 8.406385849063936}, {"pressure": 8736.956306914226, "depth": 5117.06576923077, "density": 8.406887488768549}, {"pressure": 8761.494697722988, "depth": 5136.335384615385, "density": 8.408372027760091}, {"pressure": 8786.035990915663, "depth": 5155.605, "density": 8.409366564194139}, {"pressure": 8810.580189344646, "depth": 5174.874615384615, "density": 8.409870933322546}, {"pressure": 8835.127295889382, "depth": 5194.1442307692305, "density": 8.41135857855411}, {"pressure": 8859.677313455926, "depth": 5213.413846153846, "density": 8.412356074866711}, {"pressure": 8884.230244977012, "depth": 5232.683461538461, "density": 8.412863256646935}, {"pressure": 8908.786040634497, "depth": 5251.953076923077, "density": 8.414336006583099}, {"pressure": 8933.34459024683, "depth": 5271.222692307692, "density": 8.4152796820304}, {"pressure": 8957.905889230737, "depth": 5290.492307692308, "density": 8.415730300056905}, {"pressure": 8982.46993967166, "depth": 5309.761923076923, "density": 8.417164606498432}, {"pressure": 9007.036743684164, "depth": 5329.031538461538, "density": 8.418108150614268}, {"pressure": 9031.60630341131, "depth": 5348.301153846153, "density": 8.419052429075073}, {"pressure": 9056.178621024002, "depth": 5367.570769230769, "density": 8.419505744026601}, {"pressure": 9080.753698720211, "depth": 5386.840384615384, "density": 8.420943226930902}, {"pressure": 9105.331538724131, "depth": 5406.11, "density": 8.421889764585357}, {"pressure": 9105.72080572641, "depth": 5406.31, "density": 12.831377579647242}, {"pressure": 9141.704077255783, "depth": 5423.605, "density": 13.737279417752859}, {"pressure": 9177.68959411238, "depth": 5440.9, "density": 13.73903055728746}, {"pressure": 9178.105745003159, "depth": 5441.1, "density": 13.717549081762709}, {"pressure": 9214.960060781435, "depth": 5458.811428571429, "density": 13.739056636219292}, {"pressure": 9251.816705135228, "depth": 5476.522857142857, "density": 13.740797755842758}, {"pressure": 9288.675665029938, "depth": 5494.234285714286, "density": 13.740787933554229}, {"pressure": 9325.536927584471, "depth": 5511.9457142857145, "density": 13.741646350624409}, {"pressure": 9362.400480066986, "depth": 5529.657142857143, "density": 13.74250002134198}, {"pressure": 9399.266309889135, "depth": 5547.368571428571, "density": 13.744222258132252}, {"pressure": 9436.134404597635, "depth": 5565.08, "density": 13.744193334560212}, {"pressure": 9436.357890455194, "depth": 5565.280000000001, "density": 7.366746745194428}, {"pressure": 9449.185467249206, "depth": 5579.153333333334, "density": 6.105169052659809}, {"pressure": 9462.014104560252, "depth": 5593.026666666667, "density": 6.105673796141147}, {"pressure": 9474.843805019858, "depth": 5606.9, "density": 6.106179792074608}, {"pressure": 9475.026847686599, "depth": 5607.1, "density": 6.033621027116776}, {"pressure": 9492.856290987138, "depth": 5626.621052631579, "density": 6.030927915461071}, {"pressure": 9510.68755454819, "depth": 5646.142105263159, "density": 6.031195931176716}, {"pressure": 9528.52064103587, "depth": 5665.663157894737, "density": 6.03181251269978}, {"pressure": 9546.35556672066, "depth": 5685.184210526316, "density": 6.032434597506272}, {"pressure": 9564.192346101776, "depth": 5704.705263157895, "density": 6.033409393564016}, {"pressure": 9582.030993672644, "depth": 5724.226315789474, "density": 6.033693477679701}, {"pressure": 9599.87152392082, "depth": 5743.747368421053, "density": 6.034330269103836}, {"pressure": 9617.713951327922, "depth": 5763.268421052632, "density": 6.034971958749792}, {"pressure": 9635.558290369534, "depth": 5782.789473684211, "density": 6.035966499063381}, {"pressure": 9653.404555515144, "depth": 5802.3105263157895, "density": 6.036270024520376}, {"pressure": 9671.25276122805, "depth": 5821.831578947368, "density": 6.036926396489607}, {"pressure": 9689.102921965277, "depth": 5841.352631578948, "density": 6.037587658361866}, {"pressure": 9706.955052177498, "depth": 5860.873684210526, "density": 6.038601914400267}, {"pressure": 9724.809166308947, "depth": 5880.394736842105, "density": 6.038924843192799}, {"pressure": 9742.665278797336, "depth": 5899.9157894736845, "density": 6.039600761766869}, {"pressure": 9760.523404073761, "depth": 5919.436842105263, "density": 6.040629784786114}, {"pressure": 9778.383556562621, "depth": 5938.957894736842, "density": 6.040967240049488}, {"pressure": 9796.245750681523, "depth": 5958.478947368421, "density": 6.041657795194394}, {"pressure": 9814.1100008412, "depth": 5978, "density": 6.042353224585787}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 10000, "apb_data": {"pressure_variation": 1822, "initial_volume": 87.9675888778126, "volume_variation": -0.2845699540449118, "leakage_bbl": 0, "final_volume": 87.68301892376769, "leakage_mass": 0}, "operation_id": "mGNrD2K2bD"}, "_id": "mGNrD2K2bD-4", "type": "THERMAL", "id": 5, "stage": "PRODUCTION", "geopressures": {}}, {"comment": "Gerado por simula\u00e7\u00e3o do pySAFE", "category": "SERVICE", "is_internal_pressure_default": true, "name": "Prod GL PA", "backup": {"pressure_profile": [{"pressure": 4978.170000000001, "depth": 2072, "density": 1.6326750537290124}, {"pressure": 4980.010471269048, "depth": 2078.685, "density": 1.6171678782125012}, {"pressure": 4981.850942538096, "depth": 2085.37, "density": 1.6021353819839501}, {"pressure": 4983.6599332970645, "depth": 2092.0550000000003, "density": 1.5904576496813445}, {"pressure": 4985.468924056033, "depth": 2098.7400000000002, "density": 1.5790787614434523}, {"pressure": 4987.253904624058, "depth": 2105.425, "density": 1.57021683571682}, {"pressure": 4989.0388851920825, "depth": 2112.11, "density": 1.5615930032638525}, {"pressure": 4989.065426407149, "depth": 2112.21, "density": 1.5614560766592556}, {"pressure": 4989.091967622215, "depth": 2112.31, "density": 1.5612855057477077}, {"pressure": 4991.530252615735, "depth": 2121.575, "density": 1.5492884950825379}, {"pressure": 4993.968537609257, "depth": 2130.84, "density": 1.537558139821462}, {"pressure": 4996.377250273594, "depth": 2140.105, "density": 1.5303080123444368}, {"pressure": 4998.785962937932, "depth": 2149.37, "density": 1.5230761796365058}, {"pressure": 5001.176897526255, "depth": 2158.635, "density": 1.5187570412447489}, {"pressure": 5003.567832114579, "depth": 2167.9, "density": 1.5144365887484423}, {"pressure": 5003.593570211366, "depth": 2168, "density": 1.5144392501978508}, {"pressure": 5003.619308308151, "depth": 2168.1, "density": 1.5144419116384673}, {"pressure": 5006.18293655635, "depth": 2178.054558823529, "density": 1.5152516248050298}, {"pressure": 5008.746564804548, "depth": 2188.0091176470587, "density": 1.5160614090266484}, {"pressure": 5011.312373328877, "depth": 2197.9636764705883, "density": 1.5165665821309153}, {"pressure": 5013.878181853203, "depth": 2207.9182352941175, "density": 1.5170717376258966}, {"pressure": 5016.445382036986, "depth": 2217.8727941176467, "density": 1.517405942051456}, {"pressure": 5019.01258222077, "depth": 2227.8273529411763, "density": 1.5177400790583015}, {"pressure": 5021.580731512299, "depth": 2237.781911764706, "density": 1.5179784131135134}, {"pressure": 5024.148880803829, "depth": 2247.736470588235, "density": 1.5182166518203588}, {"pressure": 5026.717731717968, "depth": 2257.6910294117642, "density": 1.5184014632006353}, {"pressure": 5029.286582632107, "depth": 2267.645588235294, "density": 1.5185861636506364}, {"pressure": 5031.8559997996745, "depth": 2277.6001470588235, "density": 1.5187432174352542}, {"pressure": 5034.425416967241, "depth": 2287.554705882353, "density": 1.5189001522210244}, {"pressure": 5036.995334814287, "depth": 2297.5092647058827, "density": 1.5190440735394517}, {"pressure": 5039.565252661331, "depth": 2307.463823529412, "density": 1.5191878720542107}, {"pressure": 5042.135638780327, "depth": 2317.418382352941, "density": 1.5193249861287943}, {"pressure": 5044.706024899324, "depth": 2327.3729411764707, "density": 1.5194619754395058}, {"pressure": 5047.276863115225, "depth": 2337.3275000000003, "density": 1.5195958009570412}, {"pressure": 5049.847701331125, "depth": 2347.2820588235295, "density": 1.5197295007763014}, {"pressure": 5052.418984600034, "depth": 2357.2366176470587, "density": 1.5198620342871503}, {"pressure": 5054.990267868942, "depth": 2367.1911764705883, "density": 1.5199944417469864}, {"pressure": 5057.561994371499, "depth": 2377.145735294118, "density": 1.520126823572906}, {"pressure": 5060.133720874056, "depth": 2387.100294117647, "density": 1.5202590793269146}, {"pressure": 5062.705891741772, "depth": 2397.0548529411763, "density": 1.5203919497289462}, {"pressure": 5065.278062609487, "depth": 2407.009411764706, "density": 1.5205246942241304}, {"pressure": 5067.850680623487, "depth": 2416.9639705882355, "density": 1.5206584092659918}, {"pressure": 5070.423298637487, "depth": 2426.9185294117647, "density": 1.520791998669146}, {"pressure": 5072.996367513265, "depth": 2436.873088235294, "density": 1.5209267680614151}, {"pressure": 5075.569436389042, "depth": 2446.8276470588235, "density": 1.521061412143497}, {"pressure": 5078.142960396133, "depth": 2456.782205882353, "density": 1.521197358934499}, {"pressure": 5080.716484403224, "depth": 2466.7367647058823, "density": 1.521333180778937}, {"pressure": 5083.290468133721, "depth": 2476.6913235294114, "density": 1.5214703774108502}, {"pressure": 5085.8644518642195, "depth": 2486.645882352941, "density": 1.5216074494801723}, {"pressure": 5088.438900102025, "depth": 2496.6004411764707, "density": 1.5217459395472117}, {"pressure": 5091.013348339832, "depth": 2506.5550000000003, "density": 1.5218843054475675}, {"pressure": 5093.5882773783105, "depth": 2516.5095588235295, "density": 1.5220234514861628}, {"pressure": 5096.163206416789, "depth": 2526.4641176470586, "density": 1.52217003967076}, {"pressure": 5098.738652548107, "depth": 2536.4186764705883, "density": 1.5223233475833982}, {"pressure": 5101.314098679424, "depth": 2546.373235294118, "density": 1.522476525500692}, {"pressure": 5103.890069987645, "depth": 2556.3277941176475, "density": 1.522631388399006}, {"pressure": 5106.466041295866, "depth": 2566.2823529411767, "density": 1.5227861218108405}, {"pressure": 5109.042543265492, "depth": 2576.236911764706, "density": 1.5229424395706495}, {"pressure": 5111.619045235119, "depth": 2586.1914705882355, "density": 1.5230986283203918}, {"pressure": 5114.196083108256, "depth": 2596.146029411765, "density": 1.5232563542132664}, {"pressure": 5116.773120981393, "depth": 2606.1005882352943, "density": 1.523413951556904}, {"pressure": 5119.350699879829, "depth": 2616.0551470588234, "density": 1.5235730570054886}, {"pressure": 5121.928278778265, "depth": 2626.009705882353, "density": 1.523732034355825}, {"pressure": 5124.506403740165, "depth": 2635.9642647058827, "density": 1.5238925000499421}, {"pressure": 5127.084528702065, "depth": 2645.918823529412, "density": 1.5240528380898977}, {"pressure": 5129.663204719964, "depth": 2655.873382352941, "density": 1.5242146579215845}, {"pressure": 5132.241880737863, "depth": 2665.8279411764706, "density": 1.5243763505404617}, {"pressure": 5134.821112766305, "depth": 2675.7825000000003, "density": 1.5245394987109318}, {"pressure": 5137.400344794746, "depth": 2685.7370588235294, "density": 1.52470252010102}, {"pressure": 5139.98013770613, "depth": 2695.6916176470586, "density": 1.5248670006405278}, {"pressure": 5142.5599306175145, "depth": 2705.646176470588, "density": 1.525031354832567}, {"pressure": 5145.140289395149, "depth": 2715.600735294118, "density": 1.5251972955707855}, {"pressure": 5147.720648172784, "depth": 2725.5552941176475, "density": 1.5253631104338843}, {"pressure": 5150.301580561934, "depth": 2735.5098529411766, "density": 1.525532186038876}, {"pressure": 5152.882512951084, "depth": 2745.464411764706, "density": 1.5257011367669961}, {"pressure": 5155.464031044873, "depth": 2755.4189705882354, "density": 1.5258734685910849}, {"pressure": 5158.045549138663, "depth": 2765.373529411765, "density": 1.5260456765728374}, {"pressure": 5160.627662816357, "depth": 2775.3280882352947, "density": 1.5262204476873449}, {"pressure": 5163.20977649405, "depth": 2785.282647058824, "density": 1.526395095735353}, {"pressure": 5165.792494500325, "depth": 2795.237205882353, "density": 1.5265728879019826}, {"pressure": 5168.375212506599, "depth": 2805.1917647058826, "density": 1.5267505579596126}, {"pressure": 5170.9585489164465, "depth": 2815.1463235294123, "density": 1.5269329077448528}, {"pressure": 5173.5418853262945, "depth": 2825.1008823529414, "density": 1.5271151368599367}, {"pressure": 5176.125853920239, "depth": 2835.0554411764706, "density": 1.5273007816298598}, {"pressure": 5178.709822514185, "depth": 2845.01, "density": 1.5274863067690232}, {"pressure": 5178.735797810467, "depth": 2845.11, "density": 1.527507027035886}, {"pressure": 5178.761773106749, "depth": 2845.21, "density": 1.527515263545697}, {"pressure": 5181.197347932048, "depth": 2854.576666666667, "density": 1.528858574686019}, {"pressure": 5183.632922757345, "depth": 2863.9433333333336, "density": 1.5302021259322132}, {"pressure": 5186.072135574532, "depth": 2873.3100000000004, "density": 1.531171497121207}, {"pressure": 5188.5113483917185, "depth": 2882.6766666666667, "density": 1.532140997416628}, {"pressure": 5190.953231949591, "depth": 2892.0433333333335, "density": 1.5328657954965703}, {"pressure": 5193.395115507465, "depth": 2901.4100000000003, "density": 1.5335906499307397}, {"pressure": 5193.421182933868, "depth": 2901.51, "density": 1.5335640233340468}, {"pressure": 5193.447250360272, "depth": 2901.61, "density": 1.5335747913761828}, {"pressure": 5195.561802554548, "depth": 2909.7266666666665, "density": 1.5329056382270747}, {"pressure": 5197.6763547488235, "depth": 2917.8433333333332, "density": 1.5322361938652962}, {"pressure": 5199.789535211164, "depth": 2925.96, "density": 1.5318777103325034}, {"pressure": 5201.902715673503, "depth": 2934.076666666667, "density": 1.531519015813649}, {"pressure": 5204.015207516314, "depth": 2942.1933333333336, "density": 1.5313553020761568}, {"pressure": 5206.1276993591255, "depth": 2950.31, "density": 1.5311914275755356}, {"pressure": 5206.153738037673, "depth": 2950.41, "density": 1.531219369404115}, {"pressure": 5206.17977671622, "depth": 2950.5099999999998, "density": 1.5312145220116222}, {"pressure": 5208.329267104136, "depth": 2958.758333333333, "density": 1.53222132256996}, {"pressure": 5210.478757492053, "depth": 2967.0066666666667, "density": 1.5332282632323362}, {"pressure": 5212.630712819548, "depth": 2975.255, "density": 1.5339947186404823}, {"pressure": 5214.7826681470415, "depth": 2983.503333333333, "density": 1.534761251270514}, {"pressure": 5216.936528212382, "depth": 2991.7516666666666, "density": 1.5353623753281624}, {"pressure": 5219.090388277724, "depth": 3000, "density": 8.730742348638412}, {"pressure": 5222.4276768327945, "depth": 3002.605, "density": 8.730660249592455}, {"pressure": 5225.764965387864, "depth": 3005.21, "density": 8.730578158938783}, {"pressure": 5225.913463143526, "depth": 3005.31, "density": 8.73228095631019}, {"pressure": 5226.06196089919, "depth": 3005.41, "density": 8.732289979488236}, {"pressure": 5238.403809119354, "depth": 3013.7212499999996, "density": 8.733039865767955}, {"pressure": 5250.745657339519, "depth": 3022.0325, "density": 8.733789655458363}, {"pressure": 5263.087540644536, "depth": 3030.34375, "density": 8.734539349322127}, {"pressure": 5275.429423949553, "depth": 3038.6549999999997, "density": 8.735284469347292}, {"pressure": 5287.771345743683, "depth": 3046.96625, "density": 8.73526496249214}, {"pressure": 5300.113267537814, "depth": 3055.2775, "density": 8.735246378876475}, {"pressure": 5312.455231104351, "depth": 3063.58875, "density": 8.735136725373202}, {"pressure": 5324.797194670889, "depth": 3071.9, "density": 8.73491183254522}, {"pressure": 5324.945700772874, "depth": 3072, "density": 8.726427702709508}, {"pressure": 5325.09420687486, "depth": 3072.1, "density": 8.726425007882641}, {"pressure": 5339.86723694902, "depth": 3082.0476190476193, "density": 8.72615700227457}, {"pressure": 5354.640267023177, "depth": 3091.995238095238, "density": 8.725887716900697}, {"pressure": 5369.413365852496, "depth": 3101.942857142857, "density": 8.725618575507497}, {"pressure": 5384.186464681813, "depth": 3111.890476190476, "density": 8.72534957660143}, {"pressure": 5398.959637428489, "depth": 3121.838095238095, "density": 8.725415787821428}, {"pressure": 5413.732810175166, "depth": 3131.785714285714, "density": 8.725395850177467}, {"pressure": 5428.5060616529145, "depth": 3141.7333333333336, "density": 8.72537755203456}, {"pressure": 5443.279313130663, "depth": 3151.6809523809525, "density": 8.725445671461072}, {"pressure": 5458.052648875143, "depth": 3161.6285714285714, "density": 8.725515556149086}, {"pressure": 5472.825984619624, "depth": 3171.5761904761903, "density": 8.725498909028515}, {"pressure": 5487.599410800492, "depth": 3181.523809523809, "density": 8.725571340898018}, {"pressure": 5502.372836981359, "depth": 3191.4714285714285, "density": 8.725556896885776}, {"pressure": 5517.1463680223505, "depth": 3201.419047619048, "density": 8.725634766183473}, {"pressure": 5531.919899063341, "depth": 3211.366666666667, "density": 8.725625225001282}, {"pressure": 5546.6935457794, "depth": 3221.3142857142857, "density": 8.725704925499139}, {"pressure": 5561.467192495459, "depth": 3231.2619047619046, "density": 8.725696930350562}, {"pressure": 5576.240960601532, "depth": 3241.2095238095235, "density": 8.725690353923058}, {"pressure": 5591.014728707606, "depth": 3251.157142857143, "density": 8.725771949460123}, {"pressure": 5605.788623928379, "depth": 3261.104761904762, "density": 8.725855319057809}, {"pressure": 5620.562519149151, "depth": 3271.052380952381, "density": 8.725850382395544}, {"pressure": 5635.336547216557, "depth": 3281, "density": 8.72584694950497}, {"pressure": 5650.110575283962, "depth": 3290.947619047619, "density": 8.725932233178115}, {"pressure": 5664.884741936617, "depth": 3300.895238095238, "density": 8.725930373013297}, {"pressure": 5679.658908589273, "depth": 3310.842857142857, "density": 8.726017505770448}, {"pressure": 5694.43321957238, "depth": 3320.7904761904765, "density": 8.726017218892949}, {"pressure": 5709.207530555486, "depth": 3330.7380952380954, "density": 8.726106204074709}, {"pressure": 5723.981992259231, "depth": 3340.6857142857143, "density": 8.726108441503728}, {"pressure": 5738.7564539629775, "depth": 3350.633333333333, "density": 8.726200344630142}, {"pressure": 5753.53108585335, "depth": 3360.580952380952, "density": 8.726299946144978}, {"pressure": 5768.305717743724, "depth": 3370.5285714285715, "density": 8.726309366982969}, {"pressure": 5783.080533879018, "depth": 3380.476190476191, "density": 8.726410823378263}, {"pressure": 5797.85535001431, "depth": 3390.4238095238097, "density": 8.726421622027344}, {"pressure": 5812.630357350012, "depth": 3400.3714285714286, "density": 8.72643395709016}, {"pressure": 5827.405364685712, "depth": 3410.3190476190475, "density": 8.726537331051487}, {"pressure": 5842.180569007046, "depth": 3420.2666666666664, "density": 8.72664247907778}, {"pressure": 5856.955773328381, "depth": 3430.214285714286, "density": 8.72665749906477}, {"pressure": 5871.731180349156, "depth": 3440.161904761905, "density": 8.726674002866396}, {"pressure": 5886.506587369931, "depth": 3450.109523809524, "density": 8.726781080361233}, {"pressure": 5901.282202827039, "depth": 3460.057142857143, "density": 8.726889966978222}, {"pressure": 5916.057818284146, "depth": 3470.004761904762, "density": 8.726908083586713}, {"pressure": 5930.833647531152, "depth": 3479.9523809523807, "density": 8.72701883916322}, {"pressure": 5945.609476778157, "depth": 3489.9, "density": 8.727037143281526}, {"pressure": 5945.758086259865, "depth": 3490, "density": 8.731261281767729}, {"pressure": 5945.9066957415735, "depth": 3490.1, "density": 8.732084908016416}, {"pressure": 5960.714608497667, "depth": 3500.06338028169, "density": 8.731999930717299}, {"pressure": 5975.522521253758, "depth": 3510.0267605633803, "density": 8.732027974217308}, {"pressure": 5990.330338177649, "depth": 3519.9901408450705, "density": 8.732058405959263}, {"pressure": 6005.138155101538, "depth": 3529.9535211267603, "density": 8.731975508629233}, {"pressure": 6019.945634234331, "depth": 3539.9169014084505, "density": 8.731894459652251}, {"pressure": 6034.753113367123, "depth": 3549.8802816901407, "density": 8.731927452731364}, {"pressure": 6049.557690772977, "depth": 3559.843661971831, "density": 8.731962787858844}, {"pressure": 6064.36226817883, "depth": 3569.807042253521, "density": 8.731883279067333}, {"pressure": 6079.154026970471, "depth": 3579.7704225352113, "density": 8.73180702503673}, {"pressure": 6093.94578576211, "depth": 3589.7338028169015, "density": 8.731844695685288}, {"pressure": 6108.709664587311, "depth": 3599.6971830985913, "density": 8.731884324891036}, {"pressure": 6123.473543412511, "depth": 3609.6605633802815, "density": 8.731810408934592}, {"pressure": 6138.201585562278, "depth": 3619.6239436619717, "density": 8.731738176794185}, {"pressure": 6152.929627712042, "depth": 3629.587323943662, "density": 8.731779811195095}, {"pressure": 6167.613921943836, "depth": 3639.550704225352, "density": 8.731709441960485}, {"pressure": 6182.298216175632, "depth": 3649.5140845070423, "density": 8.731752862860187}, {"pressure": 6196.930876004848, "depth": 3659.4774647887325, "density": 8.731800039004868}, {"pressure": 6211.563535834064, "depth": 3669.4408450704223, "density": 8.731733367617029}, {"pressure": 6226.13671033319, "depth": 3679.4042253521125, "density": 8.731783675001513}, {"pressure": 6240.7098848323185, "depth": 3689.3676056338027, "density": 8.731720034735886}, {"pressure": 6255.215746068648, "depth": 3699.330985915493, "density": 8.731657831842458}, {"pressure": 6269.721607304977, "depth": 3709.294366197183, "density": 8.731709592610208}, {"pressure": 6284.152362306237, "depth": 3719.257746478873, "density": 8.7316488412683}, {"pressure": 6298.583117307496, "depth": 3729.221126760563, "density": 8.731701841823659}, {"pressure": 6312.931013101902, "depth": 3739.1845070422532, "density": 8.731755870720646}, {"pressure": 6327.27890889631, "depth": 3749.1478873239435, "density": 8.731696577839898}, {"pressure": 6341.536236846727, "depth": 3759.1112676056337, "density": 8.731638454624788}, {"pressure": 6355.793564797144, "depth": 3769.074647887324, "density": 8.731693520431369}, {"pressure": 6369.952664538517, "depth": 3779.038028169014, "density": 8.73174934196369}, {"pressure": 6384.111764279888, "depth": 3789.001408450704, "density": 8.731692549263363}, {"pressure": 6398.1650277029585, "depth": 3798.964788732394, "density": 8.731636876824824}, {"pressure": 6412.218291126029, "depth": 3808.9281690140842, "density": 8.73169345989543}, {"pressure": 6426.158166505974, "depth": 3818.8915492957744, "density": 8.731639012783473}, {"pressure": 6440.098041885919, "depth": 3828.8549295774646, "density": 8.731696148666725}, {"pressure": 6453.917037341927, "depth": 3838.818309859155, "density": 8.731642927088853}, {"pressure": 6467.736032797935, "depth": 3848.781690140845, "density": 8.731700470455262}, {"pressure": 6481.426721583414, "depth": 3858.745070422535, "density": 8.731758215757578}, {"pressure": 6495.1174103688945, "depth": 3868.708450704225, "density": 8.731706048686684}, {"pressure": 6508.672434733808, "depth": 3878.671830985915, "density": 8.731763921363292}, {"pressure": 6522.227459098719, "depth": 3888.6352112676054, "density": 8.731712625471987}, {"pressure": 6535.639491967894, "depth": 3898.5985915492956, "density": 8.731660861682654}, {"pressure": 6549.051524837069, "depth": 3908.561971830986, "density": 8.73171748726516}, {"pressure": 6562.31290339797, "depth": 3918.525352112676, "density": 8.731670122871336}, {"pressure": 6575.574281958872, "depth": 3928.488732394366, "density": 8.731730810077048}, {"pressure": 6588.7516235162375, "depth": 3938.452112676056, "density": 8.731794577086692}, {"pressure": 6601.928965073601, "depth": 3948.415492957746, "density": 8.731750514644878}, {"pressure": 6615.105077415266, "depth": 3958.3788732394364, "density": 8.731708156045391}, {"pressure": 6628.281189756932, "depth": 3968.3422535211266, "density": 8.731774211441708}, {"pressure": 6641.457336817963, "depth": 3978.305633802817, "density": 8.731842462651176}, {"pressure": 6654.633483878994, "depth": 3988.269014084507, "density": 8.731801949605687}, {"pressure": 6667.8096717130575, "depth": 3998.232394366197, "density": 8.731763161900961}, {"pressure": 6680.9858595471205, "depth": 4008.195774647887, "density": 8.73183373312349}, {"pressure": 6694.162094325176, "depth": 4018.159154929577, "density": 8.731906507613658}, {"pressure": 6707.338329103232, "depth": 4028.1225352112674, "density": 8.731869499956948}, {"pressure": 6720.514616888152, "depth": 4038.0859154929576, "density": 8.731944542093528}, {"pressure": 6733.690904673071, "depth": 4048.049295774648, "density": 8.731909414203152}, {"pressure": 6746.86725154207, "depth": 4058.012676056338, "density": 8.731986736252564}, {"pressure": 6760.043598411068, "depth": 4067.976056338028, "density": 8.731953196276336}, {"pressure": 6773.220011155737, "depth": 4077.939436619718, "density": 8.732032789250857}, {"pressure": 6786.396423900407, "depth": 4087.902816901408, "density": 8.732001329391597}, {"pressure": 6799.572908598631, "depth": 4097.866197183099, "density": 8.731972210119425}, {"pressure": 6812.7493932968555, "depth": 4107.829577464789, "density": 8.732054128601915}, {"pressure": 6825.92595601816, "depth": 4117.792957746478, "density": 8.732026768803856}, {"pressure": 6839.102518739466, "depth": 4127.756338028169, "density": 8.732110978225094}, {"pressure": 6852.279165561655, "depth": 4137.71971830986, "density": 8.732197430015802}, {"pressure": 6865.455812383841, "depth": 4147.683098591549, "density": 8.732171883268192}, {"pressure": 6878.632550896593, "depth": 4157.646478873239, "density": 8.732149592223022}, {"pressure": 6891.809289409346, "depth": 4167.609859154929, "density": 8.732240224686697}, {"pressure": 6904.986132742606, "depth": 4177.573239436619, "density": 8.732220845103267}, {"pressure": 6918.162976075869, "depth": 4187.536619718309, "density": 8.732315086484046}, {"pressure": 6931.339930918215, "depth": 4197.5, "density": 8.73241157751514}, {"pressure": 6944.516885760559, "depth": 4207.46338028169, "density": 8.732393997225321}, {"pressure": 6957.693958171796, "depth": 4217.4267605633795, "density": 8.732378120213767}, {"pressure": 6970.871030583036, "depth": 4227.39014084507, "density": 8.732476975253379}, {"pressure": 6984.048226506596, "depth": 4237.353521126761, "density": 8.732462878267977}, {"pressure": 6997.225422430153, "depth": 4247.316901408451, "density": 8.73256404906489}, {"pressure": 7010.402747700289, "depth": 4257.28028169014, "density": 8.73266748196776}, {"pressure": 7023.580072970426, "depth": 4267.243661971831, "density": 8.732655279523378}, {"pressure": 7036.757533167189, "depth": 4277.207042253522, "density": 8.73276103355886}, {"pressure": 7049.934993363949, "depth": 4287.170422535211, "density": 8.732750587150159}, {"pressure": 7063.11259473567, "depth": 4297.133802816901, "density": 8.73285866638467}, {"pressure": 7076.290196107392, "depth": 4307.097183098591, "density": 8.732849892003035}, {"pressure": 7089.46794484564, "depth": 4317.060563380281, "density": 8.732842697904035}, {"pressure": 7102.64569358389, "depth": 4327.023943661971, "density": 8.732953148410838}, {"pressure": 7115.823595365236, "depth": 4336.987323943662, "density": 8.733065789274708}, {"pressure": 7129.001497146581, "depth": 4346.950704225352, "density": 8.733059102560045}, {"pressure": 7142.179555012449, "depth": 4356.9140845070415, "density": 8.733054088893216}, {"pressure": 7155.35761287832, "depth": 4366.877464788732, "density": 8.733167955132458}, {"pressure": 7168.535832649633, "depth": 4376.840845070423, "density": 8.733164655060095}, {"pressure": 7181.714052420945, "depth": 4386.804225352113, "density": 8.73328086837837}, {"pressure": 7194.892440212209, "depth": 4396.767605633802, "density": 8.733399382735824}, {"pressure": 7208.070828003475, "depth": 4406.730985915493, "density": 8.73339784178088}, {"pressure": 7221.249389946442, "depth": 4416.694366197184, "density": 8.733518711329614}, {"pressure": 7234.427951889407, "depth": 4426.657746478873, "density": 8.733518846982903}, {"pressure": 7247.606694295713, "depth": 4436.621126760563, "density": 8.733520591112207}, {"pressure": 7260.785436702019, "depth": 4446.584507042253, "density": 8.733643869448358}, {"pressure": 7273.964365726187, "depth": 4456.547887323943, "density": 8.73376946344141}, {"pressure": 7287.143294750356, "depth": 4466.511267605633, "density": 8.733772949890175}, {"pressure": 7300.322416407997, "depth": 4476.474647887324, "density": 8.73377814735961}, {"pressure": 7313.501538065636, "depth": 4486.438028169014, "density": 8.73390615808718}, {"pressure": 7326.68085795019, "depth": 4496.4014084507035, "density": 8.734036493007732}, {"pressure": 7339.8601778347465, "depth": 4506.364788732394, "density": 8.7340434718618}, {"pressure": 7353.039702020724, "depth": 4516.328169014085, "density": 8.734052072202521}, {"pressure": 7366.219226206699, "depth": 4526.2915492957745, "density": 8.734184833341665}, {"pressure": 7379.398960813487, "depth": 4536.254929577464, "density": 8.734319929209999}, {"pressure": 7392.578695420275, "depth": 4546.218309859155, "density": 8.734330239175414}, {"pressure": 7405.758646594525, "depth": 4556.181690140846, "density": 8.734342121142594}, {"pressure": 7418.938597768774, "depth": 4566.145070422535, "density": 8.734479649479624}, {"pressure": 7432.118771815487, "depth": 4576.108450704225, "density": 8.734619520938194}, {"pressure": 7445.298945862198, "depth": 4586.071830985915, "density": 8.734633068022001}, {"pressure": 7458.479349373353, "depth": 4596.035211267605, "density": 8.734776335520314}, {"pressure": 7471.65975288451, "depth": 4605.998591549295, "density": 8.734792400489187}, {"pressure": 7484.840400892817, "depth": 4615.961971830986, "density": 8.734813548006443}, {"pressure": 7498.021048901123, "depth": 4625.925352112676, "density": 8.734963240167275}, {"pressure": 7511.201952139921, "depth": 4635.888732394365, "density": 8.735115269015942}, {"pressure": 7524.382855378719, "depth": 4645.852112676056, "density": 8.735138054560979}, {"pressure": 7537.564019877523, "depth": 4655.815492957747, "density": 8.735292507343308}, {"pressure": 7550.745184376324, "depth": 4665.7788732394365, "density": 8.735316908656293}, {"pressure": 7563.926620229262, "depth": 4675.742253521126, "density": 8.735476556743498}, {"pressure": 7577.108056082199, "depth": 4685.705633802816, "density": 8.735504991032581}, {"pressure": 7590.289773184795, "depth": 4695.669014084507, "density": 8.735534947919408}, {"pressure": 7603.47149028739, "depth": 4705.632394366197, "density": 8.735697028214293}, {"pressure": 7616.65349436929, "depth": 4715.595774647887, "density": 8.735861457446767}, {"pressure": 7629.835498451191, "depth": 4725.559154929577, "density": 8.735893063116364}, {"pressure": 7643.0177954996, "depth": 4735.522535211267, "density": 8.736059891800943}, {"pressure": 7656.2000925480115, "depth": 4745.485915492957, "density": 8.736092939094494}, {"pressure": 7669.382688780324, "depth": 4755.449295774648, "density": 8.736127647005103}, {"pressure": 7682.565285012635, "depth": 4765.412676056338, "density": 8.73629690604441}, {"pressure": 7695.748186307758, "depth": 4775.376056338027, "density": 8.736468525063774}, {"pressure": 7708.931087602882, "depth": 4785.339436619718, "density": 8.736504578574152}, {"pressure": 7722.1142977598865, "depth": 4795.302816901409, "density": 8.736541047317395}, {"pressure": 7735.297507916889, "depth": 4805.2661971830985, "density": 8.736713858464757}, {"pressure": 7748.481031228914, "depth": 4815.229577464788, "density": 8.736889043928812}, {"pressure": 7761.664554540939, "depth": 4825.192957746478, "density": 8.736927001570887}, {"pressure": 7774.848397023608, "depth": 4835.156338028169, "density": 8.737104602520997}, {"pressure": 7788.032239506278, "depth": 4845.119718309859, "density": 8.737143904398698}, {"pressure": 7801.216407251341, "depth": 4855.083098591549, "density": 8.737184561666938}, {"pressure": 7814.400574996405, "depth": 4865.046478873239, "density": 8.737364623698987}, {"pressure": 7827.585073831936, "depth": 4875.009859154929, "density": 8.737547072372877}, {"pressure": 7840.769572667469, "depth": 4884.973239436619, "density": 8.73758916025989}, {"pressure": 7853.954408384713, "depth": 4894.93661971831, "density": 8.737632578085384}, {"pressure": 7867.139244101955, "depth": 4904.9, "density": 8.737817494615404}, {"pressure": 7867.271533972684, "depth": 4905, "density": 8.734453198993771}, {"pressure": 7867.403823843412, "depth": 4905.1, "density": 8.733950662259652}, {"pressure": 7880.149120020892, "depth": 4914.734807692308, "density": 8.734188943961742}, {"pressure": 7892.894416198373, "depth": 4924.369615384616, "density": 8.734348125213101}, {"pressure": 7905.640278601352, "depth": 4934.004423076924, "density": 8.734507823070205}, {"pressure": 7918.386141004333, "depth": 4943.639230769231, "density": 8.734747215312114}, {"pressure": 7931.132571629043, "depth": 4953.274038461539, "density": 8.734907438389628}, {"pressure": 7943.879002253754, "depth": 4962.908846153847, "density": 8.73514792524009}, {"pressure": 7956.626003336504, "depth": 4972.5436538461545, "density": 8.735308609528241}, {"pressure": 7969.373004419256, "depth": 4982.178461538462, "density": 8.735550192637792}, {"pressure": 7982.120578232016, "depth": 4991.81326923077, "density": 8.735792856780186}, {"pressure": 7994.868152044773, "depth": 5001.448076923077, "density": 8.735953997976665}, {"pressure": 8007.6163008314725, "depth": 5011.0828846153845, "density": 8.736115541428566}, {"pressure": 8020.364449618171, "depth": 5020.717692307692, "density": 8.73635932024772}, {"pressure": 8033.112099237146, "depth": 5030.3525, "density": 8.736600783685288}, {"pressure": 8045.85974885612, "depth": 5039.987307692308, "density": 8.737047783664499}, {"pressure": 8058.607803695913, "depth": 5049.622115384615, "density": 8.737199742327471}, {"pressure": 8071.355858535707, "depth": 5059.256923076923, "density": 8.737446104972692}, {"pressure": 8084.104540564308, "depth": 5068.891730769231, "density": 8.737693543244404}, {"pressure": 8096.85322259291, "depth": 5078.526538461539, "density": 8.737845864479834}, {"pressure": 8109.602533929289, "depth": 5088.161346153846, "density": 8.738094396308005}, {"pressure": 8122.351845265667, "depth": 5097.796153846154, "density": 8.738247035107163}, {"pressure": 8135.101787984366, "depth": 5107.430961538462, "density": 8.73839994457901}, {"pressure": 8147.851730703066, "depth": 5117.06576923077, "density": 8.738649587466554}, {"pressure": 8160.602306830421, "depth": 5126.700576923077, "density": 8.738802751241957}, {"pressure": 8173.352882957777, "depth": 5136.335384615385, "density": 8.739053489601131}, {"pressure": 8186.10409447045, "depth": 5145.970192307692, "density": 8.739305308251904}, {"pressure": 8198.855305983125, "depth": 5155.605, "density": 8.739458706654508}, {"pressure": 8211.607154880767, "depth": 5165.239807692307, "density": 8.739612429761909}, {"pressure": 8224.35900377841, "depth": 5174.874615384615, "density": 8.73986553954433}, {"pressure": 8237.111496041713, "depth": 5184.509423076923, "density": 8.740021463871322}, {"pressure": 8249.863988305013, "depth": 5194.1442307692305, "density": 8.740278063566919}, {"pressure": 8262.617129323686, "depth": 5203.779038461538, "density": 8.740535744184072}, {"pressure": 8275.37027034236, "depth": 5213.413846153846, "density": 8.740691730708592}, {"pressure": 8288.12406172921, "depth": 5223.048653846154, "density": 8.74095050816285}, {"pressure": 8300.877853116059, "depth": 5232.683461538461, "density": 8.741106284317746}, {"pressure": 8313.63229441449, "depth": 5242.318269230769, "density": 8.741261070674392}, {"pressure": 8326.38673571292, "depth": 5251.953076923077, "density": 8.741519747099098}, {"pressure": 8339.141826916757, "depth": 5261.587884615385, "density": 8.741779507371442}, {"pressure": 8351.89691812059, "depth": 5271.222692307692, "density": 8.741934227283796}, {"pressure": 8364.652660573698, "depth": 5280.8575, "density": 8.7420887783}, {"pressure": 8377.408403026806, "depth": 5290.492307692308, "density": 8.742349653711507}, {"pressure": 8390.164797947195, "depth": 5300.1271153846155, "density": 8.742611615497589}, {"pressure": 8402.921192867585, "depth": 5309.761923076923, "density": 8.742765946079013}, {"pressure": 8415.678241330086, "depth": 5319.396730769231, "density": 8.742919933981835}, {"pressure": 8428.435289792586, "depth": 5329.031538461538, "density": 8.743183013170842}, {"pressure": 8441.192992707955, "depth": 5338.666346153846, "density": 8.743336567592399}, {"pressure": 8453.950695623322, "depth": 5348.301153846153, "density": 8.74360075060876}, {"pressure": 8466.70905371277, "depth": 5357.935961538461, "density": 8.743887853610259}, {"pressure": 8479.467411802218, "depth": 5367.570769230769, "density": 8.744174954266054}, {"pressure": 8492.226425565936, "depth": 5377.2055769230765, "density": 8.744462066779429}, {"pressure": 8504.985439329654, "depth": 5386.840384615384, "density": 8.74474917694698}, {"pressure": 8517.745109007341, "depth": 5396.475192307692, "density": 8.745036298977062}, {"pressure": 8530.504778685026, "depth": 5406.11, "density": 8.745321668388817}, {"pressure": 8530.637216610352, "depth": 5406.21, "density": 8.744367621393398}, {"pressure": 8530.76965453568, "depth": 5406.31, "density": 8.744370398495834}, {"pressure": 8542.22263092811, "depth": 5414.9575, "density": 8.744610558041924}, {"pressure": 8553.67560732054, "depth": 5423.605, "density": 8.744829587868887}, {"pressure": 8565.129338509207, "depth": 5432.2525, "density": 8.745033977686584}, {"pressure": 8576.583069697872, "depth": 5440.9, "density": 8.745234203765218}, {"pressure": 8576.715525831418, "depth": 5441, "density": 8.744861603163397}, {"pressure": 8576.847981964964, "depth": 5441.1, "density": 8.744865862311718}, {"pressure": 8588.578322894957, "depth": 5449.955714285715, "density": 8.745243036568462}, {"pressure": 8600.308663824948, "depth": 5458.811428571429, "density": 8.745620186083991}, {"pressure": 8612.039789663228, "depth": 5467.667142857143, "density": 8.745997327868201}, {"pressure": 8623.770915501507, "depth": 5476.522857142857, "density": 8.74637444490954}, {"pressure": 8635.502823198112, "depth": 5485.378571428571, "density": 8.746751554150155}, {"pressure": 8647.23473089472, "depth": 5494.234285714286, "density": 8.74712863864625}, {"pressure": 8658.967416386718, "depth": 5503.09, "density": 8.747505715250298}, {"pressure": 8670.70010187872, "depth": 5511.9457142857145, "density": 8.74788276710818}, {"pressure": 8682.43355969459, "depth": 5520.801428571429, "density": 8.748259810952197}, {"pressure": 8694.167017510461, "depth": 5529.657142857143, "density": 8.748636830048419}, {"pressure": 8705.901240102812, "depth": 5538.512857142858, "density": 8.749013840964016}, {"pressure": 8717.635462695163, "depth": 5547.368571428571, "density": 8.749390827130213}, {"pressure": 8729.37043918706, "depth": 5556.2242857142855, "density": 8.749575122087277}, {"pressure": 8741.105415678956, "depth": 5565.08, "density": 8.749926025605964}, {"pressure": 8741.224677417784, "depth": 5565.17, "density": 8.749926025605964}, {"pressure": 9440.890592193835, "depth": 5565.1900000000005, "density": 6.935003679361158}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978, "density": 5.970502097594757}], "type": "THERMAL_BACKUP", "geopressures": {"fracture_pressure_id": "", "pore_pressure_id": "", "overburden_pressure_id": ""}}, "is_geopressure_default": true, "is_default": true, "is_external_pressure_default": true, "temperatures": {"final_id": "4wJoVX5gYp", "initial_id": "OJ2jk8P78o"}, "is_temperature_default": true, "attributes": {"md": 5978, "pressure_profile": [{"pressure": 5204.903310133675, "depth": 2072, "density": 9.221596295712184}, {"pressure": 5225.914920195607, "depth": 2085.37, "density": 9.221596295712184}, {"pressure": 5246.920298925266, "depth": 2098.7400000000002, "density": 9.225071793293836}, {"pressure": 5267.919817388084, "depth": 2112.11, "density": 9.228715049714353}, {"pressure": 5268.152074795892, "depth": 2112.31, "density": 6.813735572853778}, {"pressure": 5288.155475254602, "depth": 2130.84, "density": 6.342499424557418}, {"pressure": 5308.163630345304, "depth": 2149.37, "density": 6.344349825939567}, {"pressure": 5328.17749913082, "depth": 2167.9, "density": 6.345818628053981}, {"pressure": 5328.393548625588, "depth": 2168.1, "density": 6.338244027985599}, {"pressure": 5349.903826546931, "depth": 2188.0091176470587, "density": 6.347922979362616}, {"pressure": 5371.420242784362, "depth": 2207.9182352941175, "density": 6.3500538519946215}, {"pressure": 5392.942653681848, "depth": 2227.8273529411763, "density": 6.351503555975771}, {"pressure": 5414.471040954587, "depth": 2247.736470588235, "density": 6.353267250984126}, {"pressure": 5436.00539640149, "depth": 2267.645588235294, "density": 6.355028525759964}, {"pressure": 5457.545748087023, "depth": 2287.554705882353, "density": 6.356798082672593}, {"pressure": 5479.092136419495, "depth": 2307.463823529412, "density": 6.358579564527979}, {"pressure": 5500.644570281912, "depth": 2327.3729411764707, "density": 6.360683589575374}, {"pressure": 5522.203059028034, "depth": 2347.2820588235295, "density": 6.362150531586102}, {"pressure": 5543.767612744539, "depth": 2367.1911764705883, "density": 6.363940372006047}, {"pressure": 5565.338241954746, "depth": 2387.100294117647, "density": 6.365733317974395}, {"pressure": 5586.914958411493, "depth": 2407.009411764706, "density": 6.367529732336607}, {"pressure": 5608.497785675964, "depth": 2426.9185294117647, "density": 6.3696534727407785}, {"pressure": 5630.086738615918, "depth": 2446.8276470588235, "density": 6.37114085503894}, {"pressure": 5651.681828172065, "depth": 2466.7367647058823, "density": 6.372951838936635}, {"pressure": 5673.2830653592155, "depth": 2486.645882352941, "density": 6.374766073427462}, {"pressure": 5694.890461256057, "depth": 2506.5550000000003, "density": 6.3765835773629025}, {"pressure": 5716.504027008922, "depth": 2526.4641176470586, "density": 6.378404370705091}, {"pressure": 5738.123773888365, "depth": 2546.373235294118, "density": 6.380549411017668}, {"pressure": 5759.749713221329, "depth": 2566.2823529411767, "density": 6.3820559522299805}, {"pressure": 5781.381856347307, "depth": 2586.1914705882355, "density": 6.383886760756481}, {"pressure": 5803.020214635637, "depth": 2606.1005882352943, "density": 6.3857209245020545}, {"pressure": 5824.664799494427, "depth": 2626.009705882353, "density": 6.3875584549071664}, {"pressure": 5846.3156223729275, "depth": 2645.918823529412, "density": 6.389399364113959}, {"pressure": 5867.97269476432, "depth": 2665.8279411764706, "density": 6.391565140046089}, {"pressure": 5889.636028207555, "depth": 2685.7370588235294, "density": 6.393091371332687}, {"pressure": 5911.305638066002, "depth": 2705.646176470588, "density": 6.394943611480333}, {"pressure": 5932.981519605128, "depth": 2725.5552941176475, "density": 6.396794454414373}, {"pressure": 5954.663112822604, "depth": 2745.464411764706, "density": 6.398480034413925}, {"pressure": 5976.350081790118, "depth": 2765.373529411765, "density": 6.400066478221089}, {"pressure": 5998.04243763913, "depth": 2785.282647058824, "density": 6.4019782057490575}, {"pressure": 6019.740206063551, "depth": 2805.1917647058826, "density": 6.403253518431159}, {"pressure": 6041.443435706104, "depth": 2825.1008823529414, "density": 6.4048651848260185}, {"pressure": 6063.152140467356, "depth": 2845.01, "density": 6.406480953433795}, {"pressure": 6063.450894223064, "depth": 2845.21, "density": 8.764538931221663}, {"pressure": 6092.946963746648, "depth": 2863.9433333333336, "density": 9.251362501880491}, {"pressure": 6122.446945751108, "depth": 2882.6766666666667, "density": 9.252095061629518}, {"pressure": 6151.950804282797, "depth": 2901.4100000000003, "density": 9.253310858928563}, {"pressure": 6152.185291300629, "depth": 2901.61, "density": 6.913714213179486}, {"pressure": 6169.912452388689, "depth": 2917.8433333333332, "density": 6.415762704668609}, {"pressure": 6187.643156752726, "depth": 2934.076666666667, "density": 6.41744092193882}, {"pressure": 6205.377459394244, "depth": 2950.31, "density": 6.41874328041718}, {"pressure": 6205.676428953543, "depth": 2950.5099999999998, "density": 8.814944684566093}, {"pressure": 6231.665221595041, "depth": 2967.0066666666667, "density": 9.25620019089025}, {"pressure": 6257.657065854402, "depth": 2983.503333333333, "density": 9.256725159779979}, {"pressure": 6283.6519416739575, "depth": 3000, "density": 9.258366783031459}, {"pressure": 6293.072764357168, "depth": 3005.21, "density": 10.625862170601257}, {"pressure": 6293.343959037523, "depth": 3005.41, "density": 7.956038337573384}, {"pressure": 6314.2270333920005, "depth": 3022.0325, "density": 7.381286172738737}, {"pressure": 6335.112992666165, "depth": 3038.6549999999997, "density": 7.382305870194632}, {"pressure": 6356.001847954613, "depth": 3055.2775, "density": 7.383774294803495}, {"pressure": 6376.893610362978, "depth": 3071.9, "density": 7.384357033423913}, {"pressure": 6377.144995380677, "depth": 3072.1, "density": 7.374882264232811}, {"pressure": 6402.1539436441135, "depth": 3091.995238095238, "density": 7.3856202456658275}, {"pressure": 6427.1671110481975, "depth": 3111.890476190476, "density": 7.3868662385103185}, {"pressure": 6452.184516574215, "depth": 3131.785714285714, "density": 7.388117836891313}, {"pressure": 6477.206179225932, "depth": 3151.6809523809525, "density": 7.38937504744731}, {"pressure": 6502.232118027906, "depth": 3171.5761904761903, "density": 7.390637876318842}, {"pressure": 6527.2623310510035, "depth": 3191.4714285714285, "density": 7.391900135480146}, {"pressure": 6552.29636994852, "depth": 3211.366666666667, "density": 7.393029989293759}, {"pressure": 6577.333972606711, "depth": 3231.2619047619046, "density": 7.394082435910448}, {"pressure": 6602.375154292892, "depth": 3251.157142857143, "density": 7.395139391257394}, {"pressure": 6627.419930314664, "depth": 3271.052380952381, "density": 7.396573152974498}, {"pressure": 6652.468316014788, "depth": 3290.947619047619, "density": 7.397266874215108}, {"pressure": 6677.5203267700335, "depth": 3310.842857142857, "density": 7.39833742225331}, {"pressure": 6702.575977991001, "depth": 3330.7380952380954, "density": 7.399412521336158}, {"pressure": 6727.635287612156, "depth": 3350.633333333333, "density": 7.40049291680923}, {"pressure": 6752.698330221791, "depth": 3370.5285714285715, "density": 7.4015953396301954}, {"pressure": 6777.765158521497, "depth": 3390.4238095238097, "density": 7.402713326237876}, {"pressure": 6802.835788791863, "depth": 3410.3190476190475, "density": 7.403836120814401}, {"pressure": 6827.910237339442, "depth": 3430.214285714286, "density": 7.404963731028021}, {"pressure": 6852.988520503252, "depth": 3450.109523809524, "density": 7.406096166465854}, {"pressure": 6878.070654647511, "depth": 3470.004761904762, "density": 7.40723343456939}, {"pressure": 6903.1566561596, "depth": 3489.9, "density": 7.408375542179914}, {"pressure": 6903.408856795826, "depth": 3490.1, "density": 7.398810064969101}, {"pressure": 6928.538285756517, "depth": 3510.0267605633803, "density": 7.409639252422601}, {"pressure": 6953.671135559508, "depth": 3529.9535211267603, "density": 7.410275524324966}, {"pressure": 6978.807104296397, "depth": 3549.8802816901407, "density": 7.411567564541979}, {"pressure": 7003.942885545295, "depth": 3569.807042253521, "density": 7.412629820053773}, {"pressure": 7029.065662055096, "depth": 3589.7338028169015, "density": 7.415503516128659}, {"pressure": 7054.155952557671, "depth": 3609.6605633802815, "density": 7.419725341203044}, {"pressure": 7079.203450861506, "depth": 3629.587323943662, "density": 7.425408829219934}, {"pressure": 7104.197900946614, "depth": 3649.5140845070423, "density": 7.431460242695827}, {"pressure": 7129.1289824055775, "depth": 3669.4408450704223, "density": 7.439006679837478}, {"pressure": 7153.986026465995, "depth": 3689.3676056338027, "density": 7.446832796532614}, {"pressure": 7178.758822661325, "depth": 3709.294366197183, "density": 7.455855573043515}, {"pressure": 7203.437241996379, "depth": 3729.221126760563, "density": 7.466516660985715}, {"pressure": 7228.011200242978, "depth": 3749.1478873239435, "density": 7.477711991291931}, {"pressure": 7252.470663389621, "depth": 3769.074647887324, "density": 7.490263782182502}, {"pressure": 7276.805653079129, "depth": 3789.001408450704, "density": 7.503054046464378}, {"pressure": 7301.006252028492, "depth": 3808.9281690140842, "density": 7.5185107632898065}, {"pressure": 7325.062609430744, "depth": 3828.8549295774646, "density": 7.534739306142837}, {"pressure": 7348.964946335124, "depth": 3848.781690140845, "density": 7.551398425197208}, {"pressure": 7372.703561004983, "depth": 3868.708450704225, "density": 7.570191190495792}, {"pressure": 7396.2688342465335, "depth": 3888.6352112676054, "density": 7.590408663673067}, {"pressure": 7419.651182573266, "depth": 3908.561971830986, "density": 7.611717186655055}, {"pressure": 7442.840596034585, "depth": 3928.488732394366, "density": 7.634472255804324}, {"pressure": 7465.923498177873, "depth": 3948.415492957746, "density": 7.648329570562856}, {"pressure": 7489.007336852222, "depth": 3968.3422535211266, "density": 7.649071838135906}, {"pressure": 7512.0937581797625, "depth": 3988.269014084507, "density": 7.649927627334619}, {"pressure": 7535.182776022698, "depth": 4008.195774647887, "density": 7.650355957287016}, {"pressure": 7558.274404280535, "depth": 4028.1225352112674, "density": 7.651652998251294}, {"pressure": 7581.36865689085, "depth": 4048.049295774648, "density": 7.65252260494494}, {"pressure": 7604.465547828907, "depth": 4067.976056338028, "density": 7.652964642531968}, {"pressure": 7627.565091105071, "depth": 4087.902816901408, "density": 7.6542757225145035}, {"pressure": 7650.667300770744, "depth": 4107.829577464789, "density": 7.655159258619164}, {"pressure": 7673.772190921059, "depth": 4127.756338028169, "density": 7.6560474652937485}, {"pressure": 7696.8797756876675, "depth": 4147.683098591549, "density": 7.656507954574211}, {"pressure": 7719.990013896124, "depth": 4167.609859154929, "density": 7.65781960040066}, {"pressure": 7743.102635144979, "depth": 4187.536619718309, "density": 7.658609245808871}, {"pressure": 7766.21762652738, "depth": 4207.46338028169, "density": 7.65939461439529}, {"pressure": 7789.335000523068, "depth": 4227.39014084507, "density": 7.659751535029366}, {"pressure": 7812.454769657812, "depth": 4247.316901408451, "density": 7.660977772699836}, {"pressure": 7835.576946502805, "depth": 4267.243661971831, "density": 7.661775592721378}, {"pressure": 7858.701543676247, "depth": 4287.170422535211, "density": 7.662577593914742}, {"pressure": 7881.8285738433715, "depth": 4307.097183098591, "density": 7.66295102793035}, {"pressure": 7904.95804971703, "depth": 4327.023943661971, "density": 7.664194202355082}, {"pressure": 7928.089984060488, "depth": 4346.950704225352, "density": 7.665008842085196}, {"pressure": 7951.224389683998, "depth": 4366.877464788732, "density": 7.665827726627233}, {"pressure": 7974.361279442612, "depth": 4386.804225352113, "density": 7.666217922390149}, {"pressure": 7997.500666235808, "depth": 4406.730985915493, "density": 7.667478289399997}, {"pressure": 8020.642563007209, "depth": 4426.657746478873, "density": 7.668309996979398}, {"pressure": 8043.786982744879, "depth": 4446.584507042253, "density": 7.66871291895247}, {"pressure": 8066.933938481172, "depth": 4466.511267605633, "density": 7.669986338008703}, {"pressure": 8090.083443291705, "depth": 4486.438028169014, "density": 7.670831000469956}, {"pressure": 8113.235510295702, "depth": 4506.364788732394, "density": 7.671680010123247}, {"pressure": 8136.3901526555155, "depth": 4526.2915492957745, "density": 7.672100100630641}, {"pressure": 8159.547383575625, "depth": 4546.218309859155, "density": 7.673391127839453}, {"pressure": 8182.707216302286, "depth": 4566.145070422535, "density": 7.6742532637041085}, {"pressure": 8205.869664123782, "depth": 4586.071830985915, "density": 7.675119802781074}, {"pressure": 8229.034742918891, "depth": 4605.998591549295, "density": 7.675558127537132}, {"pressure": 8252.202514467268, "depth": 4625.925352112676, "density": 7.6768838754697}, {"pressure": 8275.373017739861, "depth": 4645.852112676056, "density": 7.67778906091474}, {"pressure": 8298.546265648194, "depth": 4665.7788732394365, "density": 7.678698524727534}, {"pressure": 8321.7221195783, "depth": 4685.705633802816, "density": 7.679128379800577}, {"pressure": 8344.900446164977, "depth": 4705.632394366197, "density": 7.680381398015525}, {"pressure": 8368.081257779671, "depth": 4725.559154929577, "density": 7.681204838089925}, {"pressure": 8391.26456683329, "depth": 4745.485915492957, "density": 7.682032390648036}, {"pressure": 8414.450385774922, "depth": 4765.412676056338, "density": 7.6824302043218085}, {"pressure": 8437.638727096139, "depth": 4785.339436619718, "density": 7.683699885249271}, {"pressure": 8460.829603328802, "depth": 4805.2661971830985, "density": 7.684539854720133}, {"pressure": 8484.02302704097, "depth": 4825.192957746478, "density": 7.68494998242465}, {"pressure": 8507.21901083625, "depth": 4845.119718309859, "density": 7.686232299114651}, {"pressure": 8530.417567353968, "depth": 4865.046478873239, "density": 7.687084797653915}, {"pressure": 8553.618709267768, "depth": 4884.973239436619, "density": 7.687941495738034}, {"pressure": 8576.822449284302, "depth": 4904.9, "density": 7.68836820493592}, {"pressure": 8577.055352742753, "depth": 4905.1, "density": 7.72055227184878}, {"pressure": 8599.496506120022, "depth": 4924.369615384616, "density": 7.689279568196107}, {"pressure": 8621.940341332955, "depth": 4943.639230769231, "density": 7.690647592615651}, {"pressure": 8644.386863677673, "depth": 4962.908846153847, "density": 7.6915683703443065}, {"pressure": 8666.836078467788, "depth": 4982.178461538462, "density": 7.692041746059344}, {"pressure": 8689.287991033978, "depth": 5001.448076923077, "density": 7.693415393964806}, {"pressure": 8711.742606723765, "depth": 5020.717692307692, "density": 7.694341651478027}, {"pressure": 8734.199931476698, "depth": 5039.987307692308, "density": 7.6952699442479275}, {"pressure": 8756.659971794186, "depth": 5059.256923076923, "density": 7.695751025393111}, {"pressure": 8779.12273301262, "depth": 5078.526538461539, "density": 7.697132813936982}, {"pressure": 8801.588220484256, "depth": 5097.796153846154, "density": 7.698066997084278}, {"pressure": 8824.05643957697, "depth": 5117.06576923077, "density": 7.6985534165260985}, {"pressure": 8846.52739567399, "depth": 5136.335384615385, "density": 7.699940886740077}, {"pressure": 8869.001094173609, "depth": 5155.605, "density": 7.7008806036713935}, {"pressure": 8891.47753783307, "depth": 5174.874615384615, "density": 7.70137149775319}, {"pressure": 8913.956605895472, "depth": 5194.1442307692305, "density": 7.702720548345948}, {"pressure": 8936.438200964894, "depth": 5213.413846153846, "density": 7.703586457416031}, {"pressure": 8958.922327665961, "depth": 5232.683461538461, "density": 7.704004029773539}, {"pressure": 8981.408990641426, "depth": 5251.953076923077, "density": 7.705323035813839}, {"pressure": 9003.898194551752, "depth": 5271.222692307692, "density": 7.7061937174236395}, {"pressure": 9026.389944074597, "depth": 5290.492307692308, "density": 7.706615927957583}, {"pressure": 9048.884243904302, "depth": 5309.761923076923, "density": 7.707939894925271}, {"pressure": 9071.381098751293, "depth": 5329.031538461538, "density": 7.708815402046427}, {"pressure": 9093.880513341439, "depth": 5348.301153846153, "density": 7.709692528541496}, {"pressure": 9116.38249241531, "depth": 5367.570769230769, "density": 7.71012100081964}, {"pressure": 9138.887040727353, "depth": 5386.840384615384, "density": 7.71145165952719}, {"pressure": 9161.394163044937, "depth": 5406.11, "density": 7.7123336731990175}, {"pressure": 9161.725901193136, "depth": 5406.31, "density": 10.935058487335965}, {"pressure": 9192.111275280056, "depth": 5423.605, "density": 11.600178535857735}, {"pressure": 9222.499196804705, "depth": 5440.9, "density": 11.601905957425826}, {"pressure": 9222.850618697723, "depth": 5441.1, "density": 11.583892219625412}, {"pressure": 9253.972884752206, "depth": 5458.811428571429, "density": 11.602184627235912}, {"pressure": 9285.097811575986, "depth": 5476.522857142857, "density": 11.603913816613174}, {"pressure": 9316.225393740755, "depth": 5494.234285714286, "density": 11.604166439644077}, {"pressure": 9347.35562590816, "depth": 5511.9457142857145, "density": 11.605154343925}, {"pressure": 9378.48850282546, "depth": 5529.657142857143, "density": 11.606140290015778}, {"pressure": 9409.624019319492, "depth": 5547.368571428571, "density": 11.607861829780953}, {"pressure": 9440.762170287782, "depth": 5565.08, "density": 11.608106422983827}, {"pressure": 9440.97255830546, "depth": 5565.280000000001, "density": 6.935003679361158}, {"pressure": 9453.607482623558, "depth": 5579.153333333334, "density": 6.013477850746952}, {"pressure": 9466.243447264551, "depth": 5593.026666666667, "density": 6.013972983010928}, {"pressure": 9478.88045521147, "depth": 5606.9, "density": 6.014469535022706}, {"pressure": 9479.061224361247, "depth": 5607.1, "density": 5.958679266244641}, {"pressure": 9496.678538658947, "depth": 5626.621052631579, "density": 5.959173867769526}, {"pressure": 9514.297631516725, "depth": 5646.142105263159, "density": 5.959431915243454}, {"pressure": 9531.918516557536, "depth": 5665.663157894737, "density": 5.960038098140958}, {"pressure": 9549.54121065729, "depth": 5685.184210526316, "density": 5.9606499890985525}, {"pressure": 9567.165730436458, "depth": 5704.705263157895, "density": 5.961611169854529}, {"pressure": 9584.7920925113, "depth": 5724.226315789474, "density": 5.9618906345719935}, {"pressure": 9602.420313493762, "depth": 5743.747368421053, "density": 5.962519386205102}, {"pressure": 9620.050409991401, "depth": 5763.268421052632, "density": 5.963153755130789}, {"pressure": 9637.68239860729, "depth": 5782.789473684211, "density": 5.964137553606843}, {"pressure": 9655.316295939914, "depth": 5802.3105263157895, "density": 5.964439338758174}, {"pressure": 9672.95211858309, "depth": 5821.831578947368, "density": 5.965090550330095}, {"pressure": 9690.589883125871, "depth": 5841.352631578948, "density": 5.965747372935043}, {"pressure": 9708.22960615243, "depth": 5860.873684210526, "density": 5.966753769516701}, {"pressure": 9725.871304241991, "depth": 5880.394736842105, "density": 5.9670778446239625}, {"pressure": 9743.514993968713, "depth": 5899.9157894736845, "density": 5.967751490318814}, {"pressure": 9761.160691901583, "depth": 5919.436842105263, "density": 5.968774821360938}, {"pressure": 9778.808414604326, "depth": 5938.957894736842, "density": 5.969115592671556}, {"pressure": 9796.458178635301, "depth": 5958.478947368421, "density": 5.969806045733602}, {"pressure": 9814.110000547387, "depth": 5978, "density": 5.970502097594757}], "temperature": 97, "initial_temperature": "Geot\u00e9rmicas", "pressure": 9814.11, "initial_pressure": "Hidrost\u00e1ticas", "flow_rate": 9000, "apb_data": {"pressure_variation": 1800.170000000001, "initial_volume": 87.9675888778126, "volume_variation": -0.2773143387337029, "leakage_bbl": 0, "final_volume": 87.6902745390789, "leakage_mass": 0}, "operation_id": "Daq40oro2q"}, "_id": "Daq40oro2q-4", "type": "THERMAL", "id": 6, "stage": "PRODUCTION", "geopressures": {}}], "annular_pressure_test": 6000, "_id": "mGy1L34nG0", "type": "PRODUCTION/INJECTION"}], "result": {"1": {"inputdic": {"files": {"_outpath": "/opt/src/103_1_Daq40oro2q_out.json", "source": "SCORE", "root_fluid": "/opt/std_fluidlib", "filepath": "/opt/src/103_1_Daq40oro2q.json"}, "models": {"annuli_pressurization": {"1": [20939266.78501551, false], "0": [21911537.746, false]}, "annular_leakage": {"locations": []}, "structural": "halal_mitchell", "initial_temperatures": "initial_formation", "time_function": "hasan_and_kabir_1991"}, "transient": [{"md": 5978, "production_fluid": "DFLT_BLACK_OIL_27.40_230.00_1.17", "temperature": 370.15, "mass_flow": {"glr": 38.333333333333336, "volume_flow_liq": 0.10416666666666666}, "pressure": 67665903.62127, "gaslift": {"pressure": 34323272.45469, "valve_md": 3000, "gas_fluid": "Methane", "vol_flow": 4.050925925925926, "temperature": 333.15}, "day": 1800}], "config": {"ode_max_step": 20}, "output": {"unit_sys": "Petrobras", "to_path": "/opt/src/103_1_Daq40oro2q_out.json"}}, "version": "9.1.0", "log": ["2024-05-05 01:19:58 INFO:Fluid library was set from the command line: '/opt/std_fluidlib'", "2024-05-05 01:19:58 INFO:pySAFE will use the fluid library set from the command line", "2024-05-05 01:19:58 INFO:Loading input dictionary...", "2024-05-05 01:19:58 INFO:SCORE json entry successfully loaded", "2024-05-05 01:19:58 WARNING:Handling of multiple thermal profiles for the formation not implemented; only first one will be taken.", "2024-05-05 01:19:58 INFO:Setting up material library (SCORE_formation)", "2024-05-05 01:19:58 INFO:Material library setup done", "2024-05-05 01:19:58 INFO:Setting up material library (SCORE_Well)", "2024-05-05 01:19:58 INFO:Material library setup done", "2024-05-05 01:19:58 INFO:Well geometry successfully generated", "2024-05-05 01:19:58 INFO:'transient' entry #0: 'MD_PDG' entry not given, assuming same as 'MD'", "2024-05-05 01:19:58 INFO:Start of mesh setting...", "2024-05-05 01:19:59 INFO:Gaslift input given, parsing gaslift data...", "2024-05-05 01:19:59 INFO:Mesh setting completed", "2024-05-05 01:19:59 INFO:Missing entry 'monophasic_natural_convection' is set to standard", "2024-05-05 01:19:59 INFO:Missing entry 'monophasic_heat_transfer' is set to standard", "2024-05-05 01:19:59 INFO:Missing entry 'biphasic_heat_transfer' is set to standard", "2024-05-05 01:19:59 INFO:Missing entry 'biphasic_pressure_loss' is set to standard", "2024-05-05 01:19:59 INFO:Starting simulations...", "2024-05-05 01:19:59 INFO:Starting simulation of day 1800.000000", "2024-05-05 01:20:00 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:01 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:01 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:02 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:03 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:04 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:04 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:05 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:05 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:06 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:06 INFO:Guesses: 1.039e+05\t3.383e+07\t2.094e+07", "2024-05-05 01:20:07 INFO:Residua: (-7.587e+04\t-2.195e-02\t-1.170e-02)", "2024-05-05 01:20:07 INFO:Guesses: 1.554e+05\t3.596e+07\t7.819e+07", "2024-05-05 01:20:09 INFO:Residua: (-4.197e+02\t1.144e-03\t5.242e-04)", "2024-05-05 01:20:09 INFO:Guesses: 1.556e+05\t3.589e+07\t7.722e+07", "2024-05-05 01:20:10 INFO:Residua: (-3.468e+00\t8.530e-06\t1.119e-05)", "2024-05-05 01:20:10 INFO:Guesses: 1.556e+05\t3.589e+07\t7.719e+07", "2024-05-05 01:20:11 INFO:Residua: (9.381e-03\t-3.651e-09\t5.799e-08)", "2024-05-05 01:20:11 INFO:Guesses: 1.556e+05\t3.589e+07\t7.719e+07", "2024-05-05 01:20:12 INFO:Residua: (1.039e-04\t5.578e-11\t8.433e-10)", "2024-05-05 01:20:12 INFO:Concluded, res: [ 0.15564405 35.88654353 77.19483946]", "2024-05-05 01:20:12 INFO:Simulation concluded. Elapsed time: 0:00:12.239", "2024-05-05 01:20:12 INFO:Simulation of day 1800.000000 ended successfully", "2024-05-05 01:20:12 INFO:Depressurization analysis of day 1800.000000 ended successfully", "2024-05-05 01:20:12 ERROR:Gaslift valve: outlet pressure (6283.651942) larger than inlet (5219.090388)!", "2024-05-05 01:20:12 ERROR:Gaslift valve: outlet pressure (6283.651942) larger than inlet (5219.090388)!", "2024-05-05 01:20:12 INFO:Simulations ended", ""], "configdic": {"ode_max_step": 20, "quad_abstol": 0.01, "stehfest_n_parameter": 16, "std_emissivity": 0.68, "std_rugosity": 1.5e-05, "annular_mass_leakage_tolerance": 8000, "quad_reltol": 0.0001, "leakage_model_gain": 0.002, "std_corr_biphasic_pressure_loss": "beggs_brill_1991", "mass_convergence_fsolve_xtol": 0.0001, "blackoil_props_source": "table", "force_start_at_top": 0, "leakage_model_linear_threshold": 10, "radial_th_sys_max_it": 1000, "ode_max_reductions": 5, "oudeman_thermal_iterations": 1, "leakage_model_scale": 8000, "sea_temperature": 277.15, "oudeman_max_residuum": 1, "std_corr_biphasic_heat_transfer": "chen_1966", "atmospheric_pressure": 101325, "quad_numdiv": 200, "radial_th_sys_reltol": 0.001, "std_corr_monophasic_natural_convection": "zhou_2013", "leakage_model_shift": 101325, "density_smoothing_relative_band": 0.0001, "tol_ann_mass_fraction": 0.001, "std_seawater_density": 998, "std_corr_monophasic_heat_transfer": "sieder_tate", "initial_profiles_spacing": 1, "std_spacing__well_layer_data": 10, "apb_finder_max_it": 100}}, "0": {"layers": {"production_fluid": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9, 3490, 3490.1, 3500.06338028169, 3510.0267605633803, 3519.9901408450705, 3529.9535211267603, 3539.9169014084505, 3549.8802816901407, 3559.843661971831, 3569.807042253521, 3579.7704225352113, 3589.7338028169015, 3599.6971830985913, 3609.6605633802815, 3619.6239436619717, 3629.587323943662, 3639.550704225352, 3649.5140845070423, 3659.4774647887325, 3669.4408450704223, 3679.4042253521125, 3689.3676056338027, 3699.330985915493, 3709.294366197183, 3719.257746478873, 3729.221126760563, 3739.1845070422532, 3749.1478873239435, 3759.1112676056337, 3769.074647887324, 3779.038028169014, 3789.001408450704, 3798.964788732394, 3808.9281690140842, 3818.8915492957744, 3828.8549295774646, 3838.818309859155, 3848.781690140845, 3858.745070422535, 3868.708450704225, 3878.671830985915, 3888.6352112676054, 3898.5985915492956, 3908.561971830986, 3918.525352112676, 3928.488732394366, 3938.452112676056, 3948.415492957746, 3958.3788732394364, 3968.3422535211266, 3978.305633802817, 3988.269014084507, 3998.232394366197, 4008.195774647887, 4018.159154929577, 4028.1225352112674, 4038.0859154929576, 4048.049295774648, 4058.012676056338, 4067.976056338028, 4077.939436619718, 4087.902816901408, 4097.866197183099, 4107.829577464789, 4117.792957746478, 4127.756338028169, 4137.71971830986, 4147.683098591549, 4157.646478873239, 4167.609859154929, 4177.573239436619, 4187.536619718309, 4197.5, 4207.46338028169, 4217.4267605633795, 4227.39014084507, 4237.353521126761, 4247.316901408451, 4257.28028169014, 4267.243661971831, 4277.207042253522, 4287.170422535211, 4297.133802816901, 4307.097183098591, 4317.060563380281, 4327.023943661971, 4336.987323943662, 4346.950704225352, 4356.9140845070415, 4366.877464788732, 4376.840845070423, 4386.804225352113, 4396.767605633802, 4406.730985915493, 4416.694366197184, 4426.657746478873, 4436.621126760563, 4446.584507042253, 4456.547887323943, 4466.511267605633, 4476.474647887324, 4486.438028169014, 4496.4014084507035, 4506.364788732394, 4516.328169014085, 4526.2915492957745, 4536.254929577464, 4546.218309859155, 4556.181690140846, 4566.145070422535, 4576.108450704225, 4586.071830985915, 4596.035211267605, 4605.998591549295, 4615.961971830986, 4625.925352112676, 4635.888732394365, 4645.852112676056, 4655.815492957747, 4665.7788732394365, 4675.742253521126, 4685.705633802816, 4695.669014084507, 4705.632394366197, 4715.595774647887, 4725.559154929577, 4735.522535211267, 4745.485915492957, 4755.449295774648, 4765.412676056338, 4775.376056338027, 4785.339436619718, 4795.302816901409, 4805.2661971830985, 4815.229577464788, 4825.192957746478, 4835.156338028169, 4845.119718309859, 4855.083098591549, 4865.046478873239, 4875.009859154929, 4884.973239436619, 4894.93661971831, 4904.9, 4905, 4905.1, 4914.734807692308, 4924.369615384616, 4934.004423076924, 4943.639230769231, 4953.274038461539, 4962.908846153847, 4972.5436538461545, 4982.178461538462, 4991.81326923077, 5001.448076923077, 5011.0828846153845, 5020.717692307692, 5030.3525, 5039.987307692308, 5049.622115384615, 5059.256923076923, 5068.891730769231, 5078.526538461539, 5088.161346153846, 5097.796153846154, 5107.430961538462, 5117.06576923077, 5126.700576923077, 5136.335384615385, 5145.970192307692, 5155.605, 5165.239807692307, 5174.874615384615, 5184.509423076923, 5194.1442307692305, 5203.779038461538, 5213.413846153846, 5223.048653846154, 5232.683461538461, 5242.318269230769, 5251.953076923077, 5261.587884615385, 5271.222692307692, 5280.8575, 5290.492307692308, 5300.1271153846155, 5309.761923076923, 5319.396730769231, 5329.031538461538, 5338.666346153846, 5348.301153846153, 5357.935961538461, 5367.570769230769, 5377.2055769230765, 5386.840384615384, 5396.475192307692, 5406.11, 5406.21, 5406.31, 5414.9575, 5423.605, 5432.2525, 5440.9, 5441, 5441.1, 5449.955714285715, 5458.811428571429, 5467.667142857143, 5476.522857142857, 5485.378571428571, 5494.234285714286, 5503.09, 5511.9457142857145, 5520.801428571429, 5529.657142857143, 5538.512857142858, 5547.368571428571, 5556.2242857142855, 5565.08, 5565.18, 5565.280000000001, 5572.216666666667, 5579.153333333334, 5586.09, 5593.026666666667, 5599.963333333333, 5606.9, 5607, 5607.1, 5616.86052631579, 5626.621052631579, 5636.381578947368, 5646.142105263159, 5655.902631578948, 5665.663157894737, 5675.4236842105265, 5685.184210526316, 5694.944736842106, 5704.705263157895, 5714.465789473685, 5724.226315789474, 5733.986842105263, 5743.747368421053, 5753.507894736842, 5763.268421052632, 5773.0289473684215, 5782.789473684211, 5792.55, 5802.3105263157895, 5812.071052631579, 5821.831578947368, 5831.592105263158, 5841.352631578948, 5851.113157894737, 5860.873684210526, 5870.634210526316, 5880.394736842105, 5890.155263157894, 5899.9157894736845, 5909.676315789474, 5919.436842105263, 5929.1973684210525, 5938.957894736842, 5948.718421052632, 5958.478947368421, 5968.239473684211, 5978], "temperature": [84.363602849612, 84.47862417591489, 84.59364550221784, 84.68607232588266, 84.77849914954743, 84.85314656783459, 84.92779398612174, 84.92924434530721, 84.93069470449268, 85.05109046424718, 85.17148622400168, 85.25901546121753, 85.34654469843338, 85.41317467535515, 85.47980465227698, 85.48044155738933, 85.48107846250167, 85.54507192669172, 85.60906539088177, 85.67421958496448, 85.73937377904724, 85.80540084586528, 85.87142791268332, 85.93782621593323, 86.00422451918314, 86.07071091706098, 86.13719731493887, 86.2020707009683, 86.2669440869978, 86.33151073080637, 86.39607737461495, 86.4604178059459, 86.52475823727684, 86.58884859226566, 86.65293894725448, 86.7167654149132, 86.78059188257191, 86.84414639766578, 86.9077009127596, 86.97098023920518, 87.03425956565076, 87.09726231111887, 87.16026505658698, 87.22298591255526, 87.28570676852354, 87.34814430478627, 87.41058184104895, 87.47273496224182, 87.53488808343462, 87.59675588469975, 87.65862368596481, 87.72020439770489, 87.78178510944497, 87.84307621479456, 87.9043673201441, 87.96536922465282, 88.02637112916148, 88.08708387715762, 88.14779662515372, 88.20821988747878, 88.26864314980395, 88.32877647909163, 88.38890980837925, 88.44875267530688, 88.50859554223456, 88.56814734217431, 88.62769914211407, 88.68695920285364, 88.74621926359322, 88.80518672332863, 88.86415418306399, 88.92264906237773, 88.98114394169147, 89.0383541286115, 89.09556431553153, 89.15246823696134, 89.20937215839115, 89.26597467832698, 89.3225771982627, 89.37780693320178, 89.4330366681408, 89.48754109695454, 89.54204552576829, 89.59624180795828, 89.65043809014827, 89.65073780257205, 89.65103751499589, 89.67600334799727, 89.7009691809987, 89.7280539476518, 89.75513871430496, 89.78352464498869, 89.81191057567247, 89.8124774513318, 89.81304432699119, 89.86174770124347, 89.91045107549581, 89.95689631416201, 90.00334155282826, 90.0482990701168, 90.09325658740534, 90.09356049467851, 90.09386440195175, 90.11580571984155, 90.13774703773146, 90.1610158910753, 90.18428474441919, 90.20840673930957, 90.23252873420006, 90.29956967026072, 90.36661060632139, 90.36706737787216, 90.36752414942293, 90.40849442511217, 90.4494647008014, 90.49019531308358, 90.53092592536575, 90.5714163666043, 90.61190680784284, 90.65215661064718, 90.69240641345152, 90.69288436336012, 90.69336231326866, 90.74063690523104, 90.78791149719336, 90.83484243822431, 90.88177337925515, 90.92835982711313, 90.9749462749711, 91.02118739127764, 91.06742850758428, 91.11332349665179, 91.15921848571924, 91.20462866452146, 91.2500388433237, 91.29440151176732, 91.338764180211, 91.3827795145404, 91.4267948488698, 91.47046182336942, 91.51412879786909, 91.5574464775301, 91.60076415719118, 91.64373170453268, 91.6866992518743, 91.72931582885366, 91.77193240583301, 91.81419717388167, 91.85646194193038, 91.89816159024707, 91.93986123856376, 91.9800276076761, 92.0201939767885, 92.06000746350583, 92.09982095022315, 92.13928080152044, 92.17874065281774, 92.21784581296538, 92.25695097311308, 92.29570045137638, 92.33444992963967, 92.37284291236915, 92.41123589509863, 92.44927156960136, 92.4873072441041, 92.48781535354999, 92.48832346299594, 92.5412504353094, 92.59417740762285, 92.64662812811184, 92.69907884860095, 92.7510517390786, 92.80302462955626, 92.8545164300798, 92.90600823060333, 92.95701063374185, 93.00801303688036, 93.05851464322745, 93.10901624957455, 93.15901142909235, 93.20900660861014, 93.25849000048095, 93.30797339235176, 93.3565129866596, 93.40505258096744, 93.45275538381708, 93.50045818666672, 93.54763836993982, 93.59481855321286, 93.64147234206763, 93.6881261309224, 93.73425006025184, 93.78037398958122, 93.82596486876344, 93.87155574794565, 93.91661070700758, 93.9616656660695, 94.00618218872154, 94.05069871137357, 94.09467462955502, 94.13865054773646, 94.18208400760568, 94.22551746747479, 94.26840690039842, 94.31129633332205, 94.35364050595047, 94.39598467857894, 94.43778259803025, 94.47958051748162, 94.51997666704222, 94.56037281660281, 94.59981813521523, 94.63926345382765, 94.67826745347196, 94.71727145311627, 94.75583377394781, 94.79439609477936, 94.83251559463736, 94.87063509449536, 94.90831060913342, 94.94598612377143, 94.98321646570452, 95.0204468076376, 95.05723084414802, 95.09401488065845, 95.13035151141497, 95.1666881421715, 95.20257588156193, 95.23846362095236, 95.27390123669079, 95.30933885242922, 95.34432522340762, 95.37931159438602, 95.4134808865839, 95.44765017878183, 95.4811042915124, 95.51455840424302, 95.54755804285685, 95.58055768147074, 95.61310172931462, 95.64564577715856, 95.67773316886468, 95.70982056057079, 95.74145018993562, 95.7730798193005, 95.80425053819357, 95.83542125708658, 95.86613192624196, 95.89684259539735, 95.92709198962706, 95.95734138385677, 95.98712825636483, 96.01691512887294, 96.04623838918212, 96.0755616494913, 96.10442022282916, 96.13327879616702, 96.16167161358521, 96.19006443100335, 96.21799042582455, 96.24591642064576, 96.27337449742413, 96.30083257420256, 96.32782167425205, 96.35481077430154, 96.38132984707772, 96.4078489198539, 96.4338968898997, 96.4599448599455, 96.4855206961434, 96.5110965323413, 96.53619921517907, 96.56130189801684, 96.5859304105939, 96.61055892317097, 96.63471222727543, 96.65886553137989, 96.68233750730496, 96.70580948323004, 96.7279878816376, 96.75016628004516, 96.77187040645896, 96.79357453287275, 96.81479558279818, 96.83601663272361, 96.85619037303081, 96.87636411333796, 96.89606085059813, 96.91575758785837, 96.93497640093153, 96.95419521400476, 96.97293522918051, 96.9916752443562, 97.00993554491424, 97.02819584547234, 97.0459753534829, 97.06375486149346, 97.08105273905403, 97.09835061661465, 97.11516606400107, 97.13198151138744, 97.1483137289029, 97.16464594641837, 97.18049413908136, 97.1963423317444, 97.21170576707186, 97.22706920239938, 97.24194717303487, 97.25682514367043, 97.25689520239263, 97.25696526111483, 97.26212512169872, 97.26728498228266, 97.27222708069178, 97.27716917910095, 97.28189321958985, 97.28661726007874, 97.29112296196718, 97.29562866385567, 97.29991575331371, 97.3042028427717, 97.30827105054493, 97.31233925831822, 97.31613412454885, 97.31992899077943, 97.32349566131882, 97.32706233185814, 97.3304116253288, 97.3337609187995, 97.33689258998538, 97.34002426117127, 97.34293807127125, 97.34585188137123, 97.34854759856262, 97.351243315754, 97.35372071581719, 97.35619811588043, 97.35842066341843, 97.36064321095643, 97.36215749309122, 97.36367177522595, 97.36496754659703, 97.3662633179681, 97.36734039001107, 97.36841746205403, 97.36927565620016, 97.37013385034629, 97.37077300199826, 97.37141215365023, 97.3718321140862, 97.37225207452218, 97.37245271237538, 97.37265335022857, 97.37263455379662, 97.37261575736466, 97.37237743738018, 97.3721391173957, 97.37168121038917, 97.37122330338264, 97.37054577581603, 97.36986824824947, 97.3689711016716, 97.36807395509368, 97.36787705235355, 97.36768014961342, 97.34733498508922, 97.32698982056502, 97.30645980712939, 97.28592979369375, 97.28569121549299, 97.28545263729222, 97.26422581471655, 97.24299899214088, 97.2215795900575, 97.20016018797412, 97.17854853681087, 97.15693688564761, 97.13513344285627, 97.11333000006493, 97.09133539811069, 97.06934079615638, 97.04715592272595, 97.02497104929546, 97.00259719647124, 96.98022334364697, 96.98023821978484, 96.98025309592265, 96.98494751299665, 96.98964193007072, 96.99421034665482, 96.99877876323882, 97.00322101827959, 97.00766327332036, 97.00773031421409, 97.00779735510781, 97.01376574875076, 97.0197341423937, 97.02456997068373, 97.02940579897376, 97.03346647761953, 97.03752715626536, 97.04096135538623, 97.04439555450705, 97.04720119122669, 97.05000682794628, 97.05218181274364, 97.054356797541, 97.05589903423135, 97.05744127092169, 97.05834865663854, 97.05925604235534, 97.05952646753201, 97.05979689270868, 97.05942824105938, 97.05905958941008, 97.05804973791192, 97.05703988641369, 97.05538670528745, 97.05373352416126, 97.0514348768533, 97.04913622954535, 97.04618997270876, 97.04324371587217, 97.03964769934782, 97.03605168282354, 97.03180374962187, 97.02755581642015, 97.02265380270183, 97.01775178898356, 97.01219352404115, 97.00663525909874, 97.00041856533755, 96.99420187157637]}, "1": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9], "temperature": [57.43820651311273, 59.793850447702766, 62.1558159274029, 64.01812532266393, 65.87554106160076, 67.33727851230248, 68.80277445534455, 68.91187782764246, 69.02072993092781, 71.01604431996617, 73.01650642985021, 74.33218558839587, 75.64471215298096, 76.4927678444758, 77.33901192617509, 75.1013619952937, 73.00030517721984, 73.00029487152551, 73.0033489288196, 73.04668435253427, 73.09224057059043, 73.16166277397076, 73.22933500707961, 73.312108295494, 73.39339623282291, 73.48225871279857, 73.57245806164258, 73.6662673486797, 73.75883116816726, 73.85318537360098, 73.94874612357177, 74.04519521867763, 74.1404583201886, 74.23711324149644, 74.33259209286985, 74.42943917098296, 74.52511605347365, 74.62077234017767, 74.71759635206581, 74.81430415898205, 74.90984493669214, 75.00522026688049, 75.10176290365439, 75.19811110788663, 75.29329119770335, 75.38825897897766, 75.48439600548693, 75.58031954874008, 75.67507257019412, 75.77077090404828, 75.86529730146685, 75.96085956092242, 76.05525026917104, 76.14939354666421, 76.24471013372477, 76.33858156647682, 76.43362855492023, 76.52842064155953, 76.62203522017376, 76.71657946839048, 76.80994440048403, 76.90305914973914, 76.99735495682421, 77.09138138145272, 77.18422494634922, 77.27683593603484, 77.37063136044429, 77.46382758789338, 77.55583592013909, 77.64769696068282, 77.74074695275954, 77.83354564859144, 77.92515523040629, 78.01614656834982, 78.10832490843882, 78.20000241833748, 78.29048611726756, 78.3805806395971, 78.47187349197236, 78.56135499162536, 78.6520315865672, 78.74197194575919, 78.83071045506915, 78.92015411785434, 79.00838913194741, 78.81619163783665, 78.62292819368167, 78.5401504323072, 78.46151936227119, 78.43165866275717, 78.40491951621772, 78.41208095036757, 78.41679065653602, 78.60155628521261, 78.7854165878627, 78.97376982459042, 79.1634134638199, 79.30843018623591, 79.45301302663967, 79.57004163397858, 79.68717319219382, 79.50438848685866, 79.320612312104, 79.27283208725783, 79.22820569245175, 79.21433552436793, 79.20296239175866, 79.21444152237905, 79.22387518917458, 79.26672446648195, 79.28656324086694, 79.44663509370196, 79.6078645476739, 79.67736597706596, 79.74568472271739, 79.8138135549982, 79.88312645840153, 79.95226703405763, 80.02022227041391, 80.08803802824053, 80.15704014430503, 79.8708800601741, 79.58259371116515, 79.6650017234549, 79.7488206106911, 79.8323977435241, 79.91456222231574, 79.99788446079009, 80.07979216942954, 80.16290241096351, 80.24459656255567, 80.3260502438709, 80.40892177184537, 80.48999568027529, 80.57249020973461, 80.65412294655255, 80.73432872032186, 80.81426531242693, 80.89563083404443, 80.97664418783324, 81.05622602047083, 81.13557049327642, 81.21634822122758, 81.2968903581725, 81.37599750623383, 81.4563041045646, 81.53517398065924, 81.61380665579418, 81.693877785999, 81.77351448127018, 81.8517095244207, 81.93008544452869, 82.0070104343439, 82.08518493429403, 82.16190702168018, 82.23838634052117, 82.3163198454331, 82.39382973546367, 82.4698823219984, 82.54570366559437, 82.62298400199438, 82.70003452642811, 82.77562436684809, 82.8524445039659, 82.92780226162643]}, "0": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9], "temperature": [26.809968708093493, 27.437545890771787, 28.059745164434958, 28.575260738215036, 29.094939477487628, 29.52925000370385, 29.960363079061494, 30.00031415883234, 30.040478999932816, 30.624225637695076, 31.212351580494385, 31.66308048160579, 32.111127385960685, 32.46060599765923, 32.811625794698045]}, "2": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9, 3490, 3490.1, 3500.06338028169, 3510.0267605633803, 3519.9901408450705, 3529.9535211267603, 3539.9169014084505, 3549.8802816901407, 3559.843661971831, 3569.807042253521, 3579.7704225352113, 3589.7338028169015, 3599.6971830985913, 3609.6605633802815, 3619.6239436619717, 3629.587323943662, 3639.550704225352, 3649.5140845070423, 3659.4774647887325, 3669.4408450704223, 3679.4042253521125, 3689.3676056338027, 3699.330985915493, 3709.294366197183, 3719.257746478873, 3729.221126760563, 3739.1845070422532, 3749.1478873239435, 3759.1112676056337, 3769.074647887324, 3779.038028169014, 3789.001408450704, 3798.964788732394, 3808.9281690140842, 3818.8915492957744, 3828.8549295774646, 3838.818309859155, 3848.781690140845, 3858.745070422535, 3868.708450704225, 3878.671830985915, 3888.6352112676054, 3898.5985915492956, 3908.561971830986, 3918.525352112676, 3928.488732394366, 3938.452112676056, 3948.415492957746, 3958.3788732394364, 3968.3422535211266, 3978.305633802817, 3988.269014084507, 3998.232394366197, 4008.195774647887, 4018.159154929577, 4028.1225352112674, 4038.0859154929576, 4048.049295774648, 4058.012676056338, 4067.976056338028, 4077.939436619718, 4087.902816901408, 4097.866197183099, 4107.829577464789, 4117.792957746478, 4127.756338028169, 4137.71971830986, 4147.683098591549, 4157.646478873239, 4167.609859154929, 4177.573239436619, 4187.536619718309, 4197.5, 4207.46338028169, 4217.4267605633795, 4227.39014084507, 4237.353521126761, 4247.316901408451, 4257.28028169014, 4267.243661971831, 4277.207042253522, 4287.170422535211, 4297.133802816901, 4307.097183098591, 4317.060563380281, 4327.023943661971, 4336.987323943662, 4346.950704225352, 4356.9140845070415, 4366.877464788732, 4376.840845070423, 4386.804225352113, 4396.767605633802, 4406.730985915493, 4416.694366197184, 4426.657746478873, 4436.621126760563, 4446.584507042253, 4456.547887323943, 4466.511267605633, 4476.474647887324, 4486.438028169014, 4496.4014084507035, 4506.364788732394, 4516.328169014085, 4526.2915492957745, 4536.254929577464, 4546.218309859155, 4556.181690140846, 4566.145070422535, 4576.108450704225, 4586.071830985915, 4596.035211267605, 4605.998591549295, 4615.961971830986, 4625.925352112676, 4635.888732394365, 4645.852112676056, 4655.815492957747, 4665.7788732394365, 4675.742253521126, 4685.705633802816, 4695.669014084507, 4705.632394366197, 4715.595774647887, 4725.559154929577, 4735.522535211267, 4745.485915492957, 4755.449295774648, 4765.412676056338, 4775.376056338027, 4785.339436619718, 4795.302816901409, 4805.2661971830985, 4815.229577464788, 4825.192957746478, 4835.156338028169, 4845.119718309859, 4855.083098591549, 4865.046478873239, 4875.009859154929, 4884.973239436619, 4894.93661971831, 4904.9, 4905, 4905.1, 4914.734807692308, 4924.369615384616, 4934.004423076924, 4943.639230769231, 4953.274038461539, 4962.908846153847, 4972.5436538461545, 4982.178461538462, 4991.81326923077, 5001.448076923077, 5011.0828846153845, 5020.717692307692, 5030.3525, 5039.987307692308, 5049.622115384615, 5059.256923076923, 5068.891730769231, 5078.526538461539, 5088.161346153846, 5097.796153846154, 5107.430961538462, 5117.06576923077, 5126.700576923077, 5136.335384615385, 5145.970192307692, 5155.605, 5165.239807692307, 5174.874615384615, 5184.509423076923, 5194.1442307692305, 5203.779038461538, 5213.413846153846, 5223.048653846154, 5232.683461538461, 5242.318269230769, 5251.953076923077, 5261.587884615385, 5271.222692307692, 5280.8575, 5290.492307692308, 5300.1271153846155, 5309.761923076923, 5319.396730769231, 5329.031538461538, 5338.666346153846, 5348.301153846153, 5357.935961538461, 5367.570769230769, 5377.2055769230765, 5386.840384615384, 5396.475192307692, 5406.11, 5406.21, 5406.31, 5414.9575, 5423.605, 5432.2525, 5440.9, 5441, 5441.1, 5449.955714285715, 5458.811428571429, 5467.667142857143, 5476.522857142857, 5485.378571428571, 5494.234285714286, 5503.09, 5511.9457142857145, 5520.801428571429, 5529.657142857143, 5538.512857142858, 5547.368571428571, 5556.2242857142855, 5565.08, 5565.18, 5565.280000000001, 5572.216666666667, 5579.153333333334, 5586.09, 5593.026666666667, 5599.963333333333, 5606.9], "temperature": [59.158268332108605, 61.57352283480674, 63.99515359723017, 65.90208346457308, 67.80407731972446, 69.29953028814293, 70.79877427962924, 70.91018157405603, 71.02133542467107, 73.11733982734165, 75.21853650571927, 76.56471306803951, 77.90770974987936, 78.7734607862252, 79.63738453282144, 78.7111479318566, 77.92268669258601, 77.89621324653422, 77.87283068632871, 77.89889757093039, 77.92272443963822, 77.97478149644951, 78.02860366997982, 78.09796565896482, 78.16582944076458, 78.2424961204494, 78.32051123995012, 78.40164387794255, 78.48403276332976, 78.56850207898799, 78.65175440715257, 78.73728277661161, 78.82161488739291, 78.90645477318964, 78.99248090811176, 79.07867138556026, 79.16368153903898, 79.24985355714762, 79.33484774310728, 79.41972081799105, 79.50577102302185, 79.59164204156627, 79.6763356501832, 79.76081535760989, 79.84647328978582, 79.93189850217044, 80.01614434919873, 80.1001445038649, 80.18532531150049, 80.27025519095378, 80.35400299055698, 80.43760661521941, 80.52239193116907, 80.60690548101388, 80.69023556599223, 80.77326216710463, 80.85747449864846, 80.94021497593587, 81.02414315288598, 81.10779532582796, 81.19025797535915, 81.27244816350668, 81.35582963184652, 81.43894482425247, 81.52086691896807, 81.6037158742069, 81.68537014313159, 81.7667726531464, 81.84937333990632, 81.93050993754713, 82.01284577740523, 82.0948875145886, 82.1757298456638, 82.2571530901925, 82.3373790587637, 82.41701865093455, 82.49786238681816, 82.57826299969588, 82.65745491067003, 82.73604532579321, 82.81584118006555, 82.89360613157083, 82.97258333528117, 83.05097805157936, 83.1281536580168, 82.92658735777798, 82.72394588142026, 82.60335905696502, 82.48695481453944, 82.43161089536414, 82.37311840536205, 82.355227650725, 82.33980984441229, 82.5317208387147, 82.72454499487571, 82.92590111937068, 83.1259556725949, 83.27483172503082, 83.42327014009288, 83.53935134646053, 83.6553287108851, 83.46273065195464, 83.27113264386912, 83.19745850514818, 83.12060323916859, 83.08359822751873, 83.04911186383436, 83.03951277860602, 83.0319768612236, 83.22306775124537, 83.43736830607202, 83.60957523615224, 83.78061454575646, 83.83934957560552, 83.89689168527889, 83.95543531562498, 84.01278462640539, 84.0699343955896, 84.1282797634932, 83.78134921740951, 83.82040169932736, 84.28336295022837, 84.28404915826627, 84.33809117650674, 84.00450779909113, 84.07248556467124, 84.14268007225553, 84.2125756224799, 84.28025148719814, 84.3476187106404, 84.41720806771468, 84.48651746935366, 84.55360198071367, 84.62250899112314, 84.68918675770112, 84.75492130432872, 84.82289504670814, 84.88835263017177, 84.95605249516916, 85.0234909240977, 85.08868300468305, 85.15584185648981, 85.22075163896284, 85.28763059214441, 85.35225775540391, 85.41660198919783, 85.48320073289688, 85.54951896723492, 85.61357997249866, 85.67716839465538, 85.74301906271057, 85.80749735275577, 85.86969883756029, 85.9316548208572, 85.99588993538066, 86.0598378441756, 86.12150383875053, 86.18267646195187, 86.24613589124783, 86.30931817808613, 86.37021100796056, 86.43082332892402, 86.49372776070362, 86.55405846913402, 86.61668394887704, 85.77556270372725, 84.84668793535809, 84.93064386628441, 85.01157771327917, 85.09215022976616, 85.17575041239718, 85.25900562605148, 85.33922781548125, 85.41918343996906, 85.50217846607723, 85.58449440479501, 85.66376474625821, 85.745545274672, 85.8242806426847, 85.9025437625404, 85.98384850349703, 86.06462214189412, 86.14235890953023, 86.22221940151451, 86.29904446734525, 86.37807040309042, 86.45406590179584, 86.52950012727655, 86.60795337401487, 86.6828045665203, 86.7606614504536, 86.83789925973036, 86.91214659443875, 86.98578370010648, 87.06239456087172, 87.1383393528418, 87.21132940362259, 87.28658547945201, 87.35890769843422, 87.43343261137409, 87.50504675367972, 87.57591928597878, 87.64967821527455, 87.7226835252377, 87.79282883501935, 87.86506897522116, 87.9344770879186, 88.0031296571459, 88.07458518520855, 88.14171220201638, 88.2116233875322, 88.28053702180989, 88.34667646676814, 88.41248366250585, 88.48106941362312, 88.54932829944488, 88.61480423936939, 88.6799488553383, 88.74788079615217, 88.81549871144279, 88.88032463537621, 88.94759639470874, 89.01207152391527, 89.07625419692278, 89.14323730593549, 89.20702857478597, 89.27362550719283, 89.33977320722738, 89.40310908041613, 89.46611751064984, 89.53194199726806, 89.5974436321655, 89.66012497200393, 89.72216668252383, 89.78703820695841, 89.8485203676031, 89.91284008685983, 89.97683842303377, 90.03799506034835, 90.09882339151466, 90.16249744066772, 90.22299277677746, 90.28633762726548, 90.34934124530065, 90.40949104271328, 90.46931216544664, 90.53199131133556, 90.59436272116403, 90.65387186518598, 90.71307685382635, 90.77514948856401, 90.83690455938427, 90.89578788702852, 90.95722383013441, 91.01578415170786, 91.07402350911332, 91.13514231244216, 91.19594472542133, 91.25386390406948, 91.31146908070792, 91.37196135680273, 91.43214705336146, 91.48944176965199, 91.54641883973, 91.60629055253884, 91.66583469900752, 91.72248041953708, 91.7817021537179, 91.8380217719008, 91.89402785151708, 91.95293956154796, 92.00863343313677, 92.06723639805796, 92.12262648918244, 92.18092922743426, 92.23893163995069, 92.29401794159446, 92.35154075101866, 92.40614145263419, 92.46266556680308, 92.51625357507442, 92.56954187022166, 92.62576934283163, 92.68169549360482, 92.73467935178337, 92.78687024941632, 92.84201396906315, 92.89686573235565, 92.9487618658656, 93.00035469360921, 93.05490613148481, 93.10918980454039, 93.16051243057552, 93.21151208069858, 93.26547664372026, 93.31915514845252, 93.36986572428157, 93.42029664604968, 93.47369782005842, 93.52682890498596, 93.57698758630784, 93.62689492575913, 93.6797770242145, 93.73239936171638, 93.78204498193213, 93.83142938880633, 93.88379226887696, 93.9359000151536, 93.98502767402476, 94.66687932936867, 95.40225285029305, 95.4275358966363, 95.45139438035437, 95.47658108435888, 95.50034257893299, 95.524008703898, 95.5491006742983, 95.57268433701961, 95.59769439510376, 95.62262663029912, 95.64613194765877, 95.66956333892847, 95.69442214103537, 95.66178366609472, 95.6273317658032, 95.65271730441742, 95.67951722196949, 95.70625907321988, 95.73158615569787, 95.75827556163983, 95.78354984671182, 95.80877746566983, 95.83542051670679, 95.86202382560163, 95.88721143560423, 95.91236628764324, 95.93893705703215, 95.96545054278693, 95.99054772661151, 96.01520931203567, 96.04129010432678, 96.06595352759769, 96.09203614547926, 96.1181216191377, 96.14278791735808, 96.16746809450126, 96.19356735452624, 96.21969433635599, 96.24440242141753, 96.26915311853907, 96.29532242825576, 96.32155053773192, 96.34636042937177, 96.37124834065071, 96.39755394946536, 96.4225414117061, 96.44894590759299, 96.47405775685917, 96.50058581025411, 96.5272661550926, 96.55253131822838, 96.57798386515822, 96.60485034415802, 96.58561520879095, 96.5662343888252, 96.5748417111659, 96.58207588955281, 96.58962840196523, 96.5985519354121, 96.59613060429683, 96.59624804050361, 96.60679618417191, 96.61802702979924, 96.63217653679203, 96.65458389576133, 96.67699125473064, 96.6993986137, 96.7218059726693, 96.7442133316386, 96.76662069060797, 96.78902804957733, 96.81143540854663, 96.83384276751599, 96.85625012648529, 96.8786574854546, 96.87891051257634, 96.87916353969814, 96.89671518771155, 96.91426683572507, 96.93181848373854, 96.9468026293278, 96.99546323697189, 97.0031715062608]}, "5": {"md": [5607, 5607.1, 5616.86052631579, 5626.621052631579, 5636.381578947368, 5646.142105263159, 5655.902631578948, 5665.663157894737, 5675.4236842105265, 5685.184210526316, 5694.944736842106, 5704.705263157895, 5714.465789473685, 5724.226315789474, 5733.986842105263, 5743.747368421053, 5753.507894736842, 5763.268421052632, 5773.0289473684215, 5782.789473684211, 5792.55, 5802.3105263157895, 5812.071052631579, 5821.831578947368, 5831.592105263158, 5841.352631578948, 5851.113157894737, 5860.873684210526, 5870.634210526316, 5880.394736842105, 5890.155263157894, 5899.9157894736845, 5909.676315789474, 5919.436842105263, 5929.1973684210525, 5938.957894736842, 5948.718421052632, 5958.478947368421, 5968.239473684211, 5978], "temperature": [97.00260308798266, 97.00319835060509, 97.01522334852604, 97.02722634936282, 97.03813368108695, 97.04906311534052, 97.05922172366508, 97.06940250657516, 97.0789579467999, 97.08853561965799, 97.09748599031354, 97.10645865183346, 97.11482439647722, 97.12316779184243, 97.13090230185446, 97.1386592197432, 97.14580539683487, 97.15292910726748, 97.15944009960538, 97.1659736175693, 97.17189255379486, 97.17778890524232, 97.18306868872571, 97.18837111632456, 97.19305510412443, 97.19771638828547, 97.2017572374773, 97.20582085001763, 97.20926214754309, 97.21268062182367, 97.21547477695071, 97.21829181540602, 97.22045970283114, 97.22265053385559, 97.22419020071845, 97.22575287163949, 97.22668542546728, 97.2275949145897, 97.2278722644702, 97.2281727398921]}, "4": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9, 3490, 3490.1, 3500.06338028169, 3510.0267605633803, 3519.9901408450705, 3529.9535211267603, 3539.9169014084505, 3549.8802816901407, 3559.843661971831, 3569.807042253521, 3579.7704225352113, 3589.7338028169015, 3599.6971830985913, 3609.6605633802815, 3619.6239436619717, 3629.587323943662, 3639.550704225352, 3649.5140845070423, 3659.4774647887325, 3669.4408450704223, 3679.4042253521125, 3689.3676056338027, 3699.330985915493, 3709.294366197183, 3719.257746478873, 3729.221126760563, 3739.1845070422532, 3749.1478873239435, 3759.1112676056337, 3769.074647887324, 3779.038028169014, 3789.001408450704, 3798.964788732394, 3808.9281690140842, 3818.8915492957744, 3828.8549295774646, 3838.818309859155, 3848.781690140845, 3858.745070422535, 3868.708450704225, 3878.671830985915, 3888.6352112676054, 3898.5985915492956, 3908.561971830986, 3918.525352112676, 3928.488732394366, 3938.452112676056, 3948.415492957746, 3958.3788732394364, 3968.3422535211266, 3978.305633802817, 3988.269014084507, 3998.232394366197, 4008.195774647887, 4018.159154929577, 4028.1225352112674, 4038.0859154929576, 4048.049295774648, 4058.012676056338, 4067.976056338028, 4077.939436619718, 4087.902816901408, 4097.866197183099, 4107.829577464789, 4117.792957746478, 4127.756338028169, 4137.71971830986, 4147.683098591549, 4157.646478873239, 4167.609859154929, 4177.573239436619, 4187.536619718309, 4197.5, 4207.46338028169, 4217.4267605633795, 4227.39014084507, 4237.353521126761, 4247.316901408451, 4257.28028169014, 4267.243661971831, 4277.207042253522, 4287.170422535211, 4297.133802816901, 4307.097183098591, 4317.060563380281, 4327.023943661971, 4336.987323943662, 4346.950704225352, 4356.9140845070415, 4366.877464788732, 4376.840845070423, 4386.804225352113, 4396.767605633802, 4406.730985915493, 4416.694366197184, 4426.657746478873, 4436.621126760563, 4446.584507042253, 4456.547887323943, 4466.511267605633, 4476.474647887324, 4486.438028169014, 4496.4014084507035, 4506.364788732394, 4516.328169014085, 4526.2915492957745, 4536.254929577464, 4546.218309859155, 4556.181690140846, 4566.145070422535, 4576.108450704225, 4586.071830985915, 4596.035211267605, 4605.998591549295, 4615.961971830986, 4625.925352112676, 4635.888732394365, 4645.852112676056, 4655.815492957747, 4665.7788732394365, 4675.742253521126, 4685.705633802816, 4695.669014084507, 4705.632394366197, 4715.595774647887, 4725.559154929577, 4735.522535211267, 4745.485915492957, 4755.449295774648, 4765.412676056338, 4775.376056338027, 4785.339436619718, 4795.302816901409, 4805.2661971830985, 4815.229577464788, 4825.192957746478, 4835.156338028169, 4845.119718309859, 4855.083098591549, 4865.046478873239, 4875.009859154929, 4884.973239436619, 4894.93661971831, 4904.9, 4905, 4905.1, 4914.734807692308, 4924.369615384616, 4934.004423076924, 4943.639230769231, 4953.274038461539, 4962.908846153847, 4972.5436538461545, 4982.178461538462, 4991.81326923077, 5001.448076923077, 5011.0828846153845, 5020.717692307692, 5030.3525, 5039.987307692308, 5049.622115384615, 5059.256923076923, 5068.891730769231, 5078.526538461539, 5088.161346153846, 5097.796153846154, 5107.430961538462, 5117.06576923077, 5126.700576923077, 5136.335384615385, 5145.970192307692, 5155.605, 5165.239807692307, 5174.874615384615, 5184.509423076923, 5194.1442307692305, 5203.779038461538, 5213.413846153846, 5223.048653846154, 5232.683461538461, 5242.318269230769, 5251.953076923077, 5261.587884615385, 5271.222692307692, 5280.8575, 5290.492307692308, 5300.1271153846155, 5309.761923076923, 5319.396730769231, 5329.031538461538, 5338.666346153846, 5348.301153846153, 5357.935961538461, 5367.570769230769, 5377.2055769230765, 5386.840384615384, 5396.475192307692, 5406.11, 5406.21, 5406.31, 5414.9575, 5423.605, 5432.2525, 5440.9, 5441, 5441.1, 5449.955714285715, 5458.811428571429, 5467.667142857143, 5476.522857142857, 5485.378571428571, 5494.234285714286, 5503.09, 5511.9457142857145, 5520.801428571429, 5529.657142857143, 5538.512857142858, 5547.368571428571, 5556.2242857142855, 5565.08], "temperature": [81.2483036286734, 81.5500777863299, 82.07794457100522, 82.49518339431802, 82.73441747733409, 83.0641346914079, 83.2539975587315, 82.55646319203066, 82.56559745403007, 82.94286444913178, 83.5357976024734, 83.92368973479728, 84.1743927308504, 84.34450598120009, 84.60169688194867, 84.60231131622129, 84.60293591166999, 84.64136973080014, 84.69146918881154, 84.74962306890103, 84.80192021840855, 84.86216313768955, 84.92502809896354, 84.9904344641547, 85.05504279470324, 85.12199387243095, 85.18871354411726, 85.25560533985805, 85.32155379862837, 85.38753559672216, 85.45474647878473, 85.52206872878628, 85.58800799270563, 85.6538024704301, 85.72106796432047, 85.78818115428885, 85.8537726162881, 85.91912767474514, 85.98603390362877, 86.05270351974724, 86.1178045821024, 86.18264224371899, 86.24905911381211, 86.31362393178028, 86.37977515685486, 86.4456545012954, 86.50994243030681, 86.57395088889768, 86.63955452898756, 86.70488001563456, 86.76860725656468, 86.83206591157142, 86.8971379742394, 86.96192242796758, 87.02509276059516, 87.08958297018614, 87.15246155673071, 87.21505103971867, 87.27925183239972, 87.34316579070833, 87.40546742182119, 87.46748100356922, 87.53110814377936, 87.59283372940331, 87.65617459751996, 87.71922910390617, 87.78066636671218, 87.84181538898872, 87.90458425248983, 87.96543810586985, 88.02791522118935, 88.08996027509005, 88.15036204009391, 88.21127306175748, 88.27046493509329, 88.32931078112517, 88.38984178339297, 88.44836535557482, 88.50855592804487, 88.56756102761699, 88.624812575683, 88.68132148410149, 88.73956981469973, 88.79743597267452, 88.85359682752573, 89.0887833840211, 89.088749263789, 89.09954837920145, 89.0934257923252, 89.11171946793468, 89.1196016263201, 89.13657359130076, 89.15969348226349, 88.88845006170061, 88.8885775073777, 88.95787061390837, 89.0443908651834, 89.10430945847799, 89.17551658793843, 89.23706734980198, 89.29104542967343, 89.5272866207257, 89.52797041029703, 89.52832791551623, 89.54040286466301, 89.54973233759097, 89.56659818181981, 89.58205022867844, 89.60215803963507, 89.57461753103621, 89.5977025951218, 89.55338302672135, 89.55385698460117, 89.59814410629463, 89.64087543576954, 89.68337168840003, 89.7274255583169, 89.76968601342145, 89.8135057540693, 89.85709015062821, 89.89911392125492, 89.902985904032, 89.90965493748155, 89.95904101069351, 90.01028305620616, 90.06118988893041, 90.11023840899679, 90.15894864920926, 90.20951966964105, 90.25975308402496, 90.30812366590624, 90.35615406950103, 90.40604961651803, 90.45546606315702, 90.50301371675573, 90.5513768534019, 90.59786285423286, 90.64588826041188, 90.6920339439398, 90.7378392434095, 90.78552767476924, 90.8328756519947, 90.8783382163017, 90.92345716566041, 90.97046380862832, 91.01523826317123, 91.0619026915075, 91.10822402460724, 91.1526531044126, 91.19652267544592, 91.24228870541765, 91.28462621828817, 91.32887239531101, 91.37277385054358, 91.41476469173142, 91.45640854315019, 91.49996534161971, 91.5431803285158, 91.58447826746317, 91.62542631907189, 91.66829364087414, 91.70889039004692, 91.75140863415913, 91.7935782423047, 91.83382412519546, 91.74390278417337, 91.58041695857844, 91.63884284188498, 91.69473528791616, 91.75269893992703, 91.80812447504911, 91.86308125511027, 91.92058064378227, 91.97506645979797, 92.03210023064668, 92.08865983135354, 92.14266628337714, 92.1961752899436, 92.25223707897544, 92.3077896688784, 92.36079244333973, 92.4132824081791, 92.46831820621196, 92.51984877838635, 92.57392397272815, 92.62714437800724, 92.67782434353336, 92.72797486548302, 92.780656257244, 92.83027157895185, 92.88240659596715, 92.93398822829772, 92.98306292173635, 93.03159222154454, 93.08261444417758, 93.13307006362766, 93.18104869976526, 93.22847218538567, 93.2783551468068, 93.32521899328509, 93.37452296220579, 93.42324362275235, 93.46954459347273, 93.51527896989364, 93.56341090747804, 93.6109498741111, 93.65611472930101, 93.70070787196681, 93.7476507575766, 93.79314816900506, 93.83631158940426, 93.8808365925704, 93.92303597050909, 93.96480176900997, 94.00889685284153, 94.05256167063669, 94.0938935224948, 94.1347902574891, 94.17802362932753, 94.22082491552851, 94.26128565291049, 94.30365359989361, 94.34367710934066, 94.38560900649293, 94.4251932756099, 94.46669068433545, 94.50583608272746, 94.54454209123975, 94.58560527682073, 94.62386863232632, 94.66449271055677, 94.70467587116644, 94.74249475573617, 94.77949779550812, 94.81887309105315, 94.85516486694655, 94.89383539105529, 94.9320629339748, 94.96790825787656, 95.00330587368262, 95.04108907777334, 95.07603767488683, 95.11337504283063, 95.1502664178031, 95.18476541198606, 95.22120944032702, 95.25525756486121, 95.29125317375309, 95.32484932218972, 95.35799345867781, 95.39354156596204, 95.42863849301591, 95.46132801465944, 95.49356159416857, 95.52820583034531, 95.55998233016885, 95.59417269267783, 95.62790803939828, 95.6592263475809, 95.69250575252147, 95.72336487875828, 95.75376374078803, 95.7865861348372, 95.8189500439778, 95.84888735082689, 95.87836217746388, 95.91026677788614, 95.94171081709874, 95.97072198911997, 95.99926829015283, 96.03025040454082, 96.0607694777616, 96.08884983463543, 96.11646332802337, 96.14651851693304, 96.17366401601373, 96.20325411430167, 96.23217586570559, 96.25864799062242, 96.28383738092191, 96.31148813241919, 96.33621045482948, 96.36339671335509, 96.3901096227736, 96.41435598463647, 96.43756015401982, 96.46323969785567, 96.4884520468404, 96.51118666759783, 96.53593123365789, 96.5581955730396, 96.58247045511655, 96.6042630676518, 96.62558456681921, 96.64939157632494, 96.67272802552941, 96.6935764360544, 96.71395018938318, 96.73681392906371, 96.75671205027982, 96.7791019613544, 96.80101764195581, 96.82043955814947, 96.8393840603099, 96.86082396852157, 96.87929011804329, 96.90025314561018, 96.91824009418087, 96.9387252740014, 96.99620338183672, 97.09854930022107, 97.10638474922001, 97.11302597590839, 97.11945271915573, 97.12707422693575, 97.13448147302313, 97.14069342140988, 97.1466901978315, 97.15388273296247, 97.15966403012527, 97.16664152399073, 97.173403647096, 97.17896916021175, 97.18467986569374, 97.19191078023812, 97.19815182232918, 97.20320717917673, 97.20923412456608, 97.21407505791058, 97.21988758554505, 97.22451380596834, 97.22892502712256, 97.23452281637697, 97.23871875512452, 97.24410148564425, 97.24926883709821, 97.25324921364529, 97.25697753480478, 97.2618931532678, 97.26610688373955, 97.26913088167589, 97.27312877046359, 97.27593693699032, 97.27852907129426, 97.28231091178668, 97.2858763795175, 97.28825221865077, 97.29041149158581, 97.29376023709824, 97.29570268363392, 97.29883436452224, 97.30174863139757, 97.30347399484992, 97.30498202165546, 97.30767851571193, 97.31015686545362, 97.31144730448847, 97.31251990597377, 97.3147797227748, 97.31682059478243, 97.31767510858208, 97.3183112815367, 97.32013276512185, 97.32283226281095, 97.32277592960406, 97.30507878596342, 97.28598203871195, 97.2667020310098, 97.24881946309182, 97.24872943989942, 97.24856144349263, 97.23003311977709, 97.21008234063686, 97.1899396869859, 97.17121622239483, 97.15229654507402, 97.13196166705268, 97.11143411101739, 97.09231679621382, 97.07299982650636, 97.05227894478219, 97.0327592203655, 97.0118439777658, 96.99073247356114, 96.97100465471658]}}, "md": [2072, 2085.37, 2098.7400000000002, 2112.11, 2112.31, 2130.84, 2149.37, 2167.9, 2168.1, 2188.0091176470587, 2207.9182352941175, 2227.8273529411763, 2247.736470588235, 2267.645588235294, 2287.554705882353, 2307.463823529412, 2327.3729411764707, 2347.2820588235295, 2367.1911764705883, 2387.100294117647, 2407.009411764706, 2426.9185294117647, 2446.8276470588235, 2466.7367647058823, 2486.645882352941, 2506.5550000000003, 2526.4641176470586, 2546.373235294118, 2566.2823529411767, 2586.1914705882355, 2606.1005882352943, 2626.009705882353, 2645.918823529412, 2665.8279411764706, 2685.7370588235294, 2705.646176470588, 2725.5552941176475, 2745.464411764706, 2765.373529411765, 2785.282647058824, 2805.1917647058826, 2825.1008823529414, 2845.01, 2845.21, 2863.9433333333336, 2882.6766666666667, 2901.4100000000003, 2901.61, 2917.8433333333332, 2934.076666666667, 2950.31, 2950.5099999999998, 2967.0066666666667, 2983.503333333333, 3000, 3005.21, 3005.41, 3022.0325, 3038.6549999999997, 3055.2775, 3071.9, 3072.1, 3091.995238095238, 3111.890476190476, 3131.785714285714, 3151.6809523809525, 3171.5761904761903, 3191.4714285714285, 3211.366666666667, 3231.2619047619046, 3251.157142857143, 3271.052380952381, 3290.947619047619, 3310.842857142857, 3330.7380952380954, 3350.633333333333, 3370.5285714285715, 3390.4238095238097, 3410.3190476190475, 3430.214285714286, 3450.109523809524, 3470.004761904762, 3489.9, 3490.1, 3510.0267605633803, 3529.9535211267603, 3549.8802816901407, 3569.807042253521, 3589.7338028169015, 3609.6605633802815, 3629.587323943662, 3649.5140845070423, 3669.4408450704223, 3689.3676056338027, 3709.294366197183, 3729.221126760563, 3749.1478873239435, 3769.074647887324, 3789.001408450704, 3808.9281690140842, 3828.8549295774646, 3848.781690140845, 3868.708450704225, 3888.6352112676054, 3908.561971830986, 3928.488732394366, 3948.415492957746, 3968.3422535211266, 3988.269014084507, 4008.195774647887, 4028.1225352112674, 4048.049295774648, 4067.976056338028, 4087.902816901408, 4107.829577464789, 4127.756338028169, 4147.683098591549, 4167.609859154929, 4187.536619718309, 4207.46338028169, 4227.39014084507, 4247.316901408451, 4267.243661971831, 4287.170422535211, 4307.097183098591, 4327.023943661971, 4346.950704225352, 4366.877464788732, 4386.804225352113, 4406.730985915493, 4426.657746478873, 4446.584507042253, 4466.511267605633, 4486.438028169014, 4506.364788732394, 4526.2915492957745, 4546.218309859155, 4566.145070422535, 4586.071830985915, 4605.998591549295, 4625.925352112676, 4645.852112676056, 4665.7788732394365, 4685.705633802816, 4705.632394366197, 4725.559154929577, 4745.485915492957, 4765.412676056338, 4785.339436619718, 4805.2661971830985, 4825.192957746478, 4845.119718309859, 4865.046478873239, 4884.973239436619, 4904.9, 4905.1, 4924.369615384616, 4943.639230769231, 4962.908846153847, 4982.178461538462, 5001.448076923077, 5020.717692307692, 5039.987307692308, 5059.256923076923, 5078.526538461539, 5097.796153846154, 5117.06576923077, 5136.335384615385, 5155.605, 5174.874615384615, 5194.1442307692305, 5213.413846153846, 5232.683461538461, 5251.953076923077, 5271.222692307692, 5290.492307692308, 5309.761923076923, 5329.031538461538, 5348.301153846153, 5367.570769230769, 5386.840384615384, 5406.11, 5406.31, 5423.605, 5440.9, 5441.1, 5458.811428571429, 5476.522857142857, 5494.234285714286, 5511.9457142857145, 5529.657142857143, 5547.368571428571, 5565.08, 5565.280000000001, 5579.153333333334, 5593.026666666667, 5606.9, 5607.1, 5626.621052631579, 5646.142105263159, 5665.663157894737, 5685.184210526316, 5704.705263157895, 5724.226315789474, 5743.747368421053, 5763.268421052632, 5782.789473684211, 5802.3105263157895, 5821.831578947368, 5841.352631578948, 5860.873684210526, 5880.394736842105, 5899.9157894736845, 5919.436842105263, 5938.957894736842, 5958.478947368421, 5978], "packer_info": {"md": 5565.18, "model": "eliminate_below"}, "production_tubing": {"mass_fraction": {"gas": [0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0.02809596596886108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, "temperature": {"final": [84.363602849612, 84.59364550221784, 84.77849914954743, 84.92779398612174, 84.93069470449268, 85.17148622400168, 85.34654469843338, 85.47980465227698, 85.48107846250167, 85.60906539088177, 85.73937377904724, 85.87142791268332, 86.00422451918314, 86.13719731493887, 86.2669440869978, 86.39607737461495, 86.52475823727684, 86.65293894725448, 86.78059188257191, 86.9077009127596, 87.03425956565076, 87.16026505658698, 87.28570676852354, 87.41058184104895, 87.53488808343462, 87.65862368596481, 87.78178510944497, 87.9043673201441, 88.02637112916148, 88.14779662515372, 88.26864314980395, 88.38890980837925, 88.50859554223456, 88.62769914211407, 88.74621926359322, 88.86415418306399, 88.98114394169147, 89.09556431553153, 89.20937215839115, 89.3225771982627, 89.4330366681408, 89.54204552576829, 89.65043809014827, 89.65103751499589, 89.7009691809987, 89.75513871430496, 89.81191057567247, 89.81304432699119, 89.91045107549581, 90.00334155282826, 90.09325658740534, 90.09386440195175, 90.13774703773146, 90.18428474441919, 90.23252873420006, 90.36661060632139, 90.36752414942293, 90.4494647008014, 90.53092592536575, 90.61190680784284, 90.69240641345152, 90.69336231326866, 90.78791149719336, 90.88177337925515, 90.9749462749711, 91.06742850758428, 91.15921848571924, 91.2500388433237, 91.338764180211, 91.4267948488698, 91.51412879786909, 91.60076415719118, 91.6866992518743, 91.77193240583301, 91.85646194193038, 91.93986123856376, 92.0201939767885, 92.09982095022315, 92.17874065281774, 92.25695097311308, 92.33444992963967, 92.41123589509863, 92.4873072441041, 92.48832346299594, 92.59417740762285, 92.69907884860095, 92.80302462955626, 92.90600823060333, 93.00801303688036, 93.10901624957455, 93.20900660861014, 93.30797339235176, 93.40505258096744, 93.50045818666672, 93.59481855321286, 93.6881261309224, 93.78037398958122, 93.87155574794565, 93.9616656660695, 94.05069871137357, 94.13865054773646, 94.22551746747479, 94.31129633332205, 94.39598467857894, 94.47958051748162, 94.56037281660281, 94.63926345382765, 94.71727145311627, 94.79439609477936, 94.87063509449536, 94.94598612377143, 95.0204468076376, 95.09401488065845, 95.1666881421715, 95.23846362095236, 95.30933885242922, 95.37931159438602, 95.44765017878183, 95.51455840424302, 95.58055768147074, 95.64564577715856, 95.70982056057079, 95.7730798193005, 95.83542125708658, 95.89684259539735, 95.95734138385677, 96.01691512887294, 96.0755616494913, 96.13327879616702, 96.19006443100335, 96.24591642064576, 96.30083257420256, 96.35481077430154, 96.4078489198539, 96.4599448599455, 96.5110965323413, 96.56130189801684, 96.61055892317097, 96.65886553137989, 96.70580948323004, 96.75016628004516, 96.79357453287275, 96.83601663272361, 96.87636411333796, 96.91575758785837, 96.95419521400476, 96.9916752443562, 97.02819584547234, 97.06375486149346, 97.09835061661465, 97.13198151138744, 97.16464594641837, 97.1963423317444, 97.22706920239938, 97.25682514367043, 97.25696526111483, 97.26728498228266, 97.27716917910095, 97.28661726007874, 97.29562866385567, 97.3042028427717, 97.31233925831822, 97.31992899077943, 97.32706233185814, 97.3337609187995, 97.34002426117127, 97.34585188137123, 97.351243315754, 97.35619811588043, 97.36064321095643, 97.36367177522595, 97.3662633179681, 97.36841746205403, 97.37013385034629, 97.37141215365023, 97.37225207452218, 97.37265335022857, 97.37261575736466, 97.3721391173957, 97.37122330338264, 97.36986824824947, 97.36807395509368, 97.36768014961342, 97.32698982056502, 97.28592979369375, 97.28545263729222, 97.24299899214088, 97.20016018797412, 97.15693688564761, 97.11333000006493, 97.06934079615638, 97.02497104929546, 96.98022334364697, 96.98025309592265, 96.98964193007072, 96.99877876323882, 97.00766327332036, 97.00779735510781, 97.0197341423937, 97.02940579897376, 97.03752715626536, 97.04439555450705, 97.05000682794628, 97.054356797541, 97.05744127092169, 97.05925604235534, 97.05979689270868, 97.05905958941008, 97.05703988641369, 97.05373352416126, 97.04913622954535, 97.04324371587217, 97.03605168282354, 97.02755581642015, 97.01775178898356, 97.00663525909874, 96.99420187157637]}, "area": {"final": [0.011048588988166958, 0.011048783052686171, 0.011048934319020157, 0.011049051797750394, 0.016981311186002733, 0.016981654477286782, 0.016981864138657078, 0.016981988702741285, 0.016981988764309303, 0.0169819820769913, 0.016981983905194762, 0.016981990717476043, 0.016982000221478336, 0.016982011119807638, 0.016982021205472195, 0.016982031332711686, 0.01698204142169495, 0.016982051364925192, 0.016982061101244773, 0.01698207059555847, 0.01698207982925081, 0.016982088792434943, 0.016982097475096294, 0.016982105872907095, 0.01698211398327489, 0.016982121804425085, 0.016982129349490945, 0.016982136596946463, 0.01698214354305078, 0.01698215019058759, 0.01698215654108681, 0.01698216259430236, 0.016982168350231662, 0.01698217380847054, 0.01698217896905065, 0.01698218382477855, 0.01698218820924205, 0.0169821913143409, 0.016982194052773358, 0.016982196449570996, 0.01698219749799804, 0.016982197759575112, 0.016982197652413353, 0.011048624074807565, 0.011048612986123418, 0.01104860703076885, 0.011048604378026277, 0.01698228832309469, 0.01698231312747132, 0.016982328026037764, 0.016982336647393504, 0.01104856702364199, 0.011048558966654968, 0.011048554190389016, 0.011048551632136099, 0.011048542182889585, 0.016982489115358265, 0.016982328891411075, 0.016982168419406963, 0.01698200769864011, 0.016981846728172365, 0.01698184835961561, 0.016981654713383722, 0.016981460711192376, 0.016981266352247608, 0.016981071635331798, 0.016980876560007865, 0.016980680974975737, 0.016980484262661657, 0.01698028718528657, 0.016980089742827987, 0.01697989193301744, 0.016979693754911013, 0.01697949520754531, 0.016979296289957115, 0.01697909677516628, 0.016978895632770927, 0.01697869411946718, 0.016978492234871856, 0.016978289980101376, 0.016978087350918967, 0.016977884345847277, 0.016977680965682945, 0.016977583185560356, 0.016977395847284176, 0.01697720801319937, 0.01697701968868359, 0.016976830917973283, 0.01697664189218512, 0.016976452893963757, 0.0169762640723275, 0.01697607557822952, 0.016975887095096145, 0.016975698891221695, 0.016975511463204588, 0.016975324960575813, 0.016975139532366155, 0.016974955327422516, 0.016974772493091147, 0.016974591176586503, 0.016974411524131466, 0.016974233681858603, 0.01697405779407019, 0.016973884004520094, 0.01697371245728616, 0.016973542395822164, 0.01697337300717999, 0.01697320315928181, 0.016973032847903035, 0.01697286207177461, 0.0169726908299325, 0.01697251912106837, 0.016972346943263335, 0.01697217429689508, 0.016972001181451174, 0.016971827594115512, 0.01697165353301003, 0.016971478604109747, 0.016971302915978932, 0.016971126749068224, 0.016970950102011103, 0.016970772973385805, 0.01697059536254258, 0.01697041726811443, 0.016970238689045316, 0.016970059625399464, 0.016969880074335444, 0.016969700034456452, 0.016969519504528383, 0.016969338483339546, 0.016969156969904736, 0.016968974963233158, 0.016968792461933523, 0.016968609464994566, 0.016968425971148553, 0.016968241979075285, 0.016968057487645342, 0.016967872496093588, 0.016967687003209025, 0.016967500791360175, 0.016967313215107256, 0.016967125138799947, 0.01696693655299921, 0.016966746856641485, 0.016966556655248374, 0.01696636594801014, 0.016966174733357816, 0.0169659830119484, 0.01696579078221319, 0.01696559804278949, 0.016965404792773912, 0.016965211031528437, 0.0169650167577401, 0.01696482197038734, 0.016964626668545268, 0.016964685414253965, 0.016964485243651573, 0.016964284837479686, 0.0169640841953928, 0.01696388331696519, 0.016963682201844604, 0.0169634808496821, 0.016963279661702642, 0.016963077774244665, 0.01696287565062008, 0.016962673290497606, 0.016962470693550127, 0.01696226785945491, 0.016962064787893787, 0.01696186144030332, 0.016961657336594924, 0.016961452993349543, 0.016961248410280707, 0.016961043587116677, 0.01696083852357655, 0.016960633219398873, 0.016960427674538824, 0.016960221888738126, 0.016960015861720624, 0.016959809593215042, 0.016959603082953707, 0.0169593963306745, 0.01103289527052932, 0.011032801736717382, 0.011032708071672686, 0.011032707026361268, 0.011032610958283767, 0.011032514752918738, 0.011032418410018513, 0.011032321929274043, 0.011032225310257708, 0.011032128552367957, 0.011032031654428223, 0.03818349523150675, 0.03818327797372205, 0.03818306057115269, 0.038182843026726906, 0.04212296404620695, 0.04212296581439177, 0.042122967611777674, 0.04212296943845058, 0.04212297129463479, 0.04212297318039879, 0.04212297509579778, 0.04212297704088693, 0.04212297901572141, 0.04212298102036746, 0.042122983055039656, 0.04212298511985215, 0.04212298721485937, 0.042122989340115706, 0.04212299149567557, 0.04212299368159332, 0.04212299589802521, 0.042122998145152565, 0.04212300042303182, 0.04212300273171659]}, "density": {"final": [5.156603958524367, 5.1586778160301865, 5.16104152078726, 5.163631525809858, 5.163652223902741, 5.165493966136587, 5.167755645137669, 5.170283113182827, 5.170311434842199, 5.172832206085738, 5.175086780926675, 5.177325174933255, 5.1795592843421385, 5.181792727594529, 5.184046853555124, 5.1863052179569005, 5.188566815816891, 5.190831950003408, 5.193100795587371, 5.195373454684943, 5.197651840962228, 5.199937882348855, 5.2022277719001435, 5.204521528039299, 5.2068191647720266, 5.2091206934839365, 5.211426135690167, 5.213735521495673, 5.216048845476631, 5.218366106399523, 5.220687307313957, 5.2230124524601615, 5.225341546822028, 5.2276745960372715, 5.230011606296085, 5.232348253383992, 5.234632588450025, 5.236569140387631, 5.2385096813537055, 5.240454146934321, 5.242415087788845, 5.244384841157195, 5.24635849912717, 5.246390861099279, 5.249637695725958, 5.2528561009362384, 5.256055811148398, 5.256077285275049, 5.257633222170235, 5.259215582559679, 5.260815385217746, 5.260847564323939, 5.263694573926771, 5.266523601296084, 5.269340207885716, 5.604320521207678, 5.604338470819288, 5.605665714535163, 5.607000035846683, 5.60834141867171, 5.6096898465005545, 5.609706160915128, 5.61133504951304, 5.612973915915303, 5.614622732317819, 5.616281470811141, 5.617950103008615, 5.619564566709469, 5.620862880556484, 5.622170017712998, 5.623485956045732, 5.62481067248748, 5.626144142985668, 5.627486343436816, 5.62883724968614, 5.630196455372145, 5.631562236063635, 5.6329367276957525, 5.634319904938922, 5.635711745255695, 5.637112225416205, 5.638521320461627, 5.639939005367753, 5.639952114223103, 5.641239871302234, 5.642538123524135, 5.643846818911275, 5.64516570607368, 5.646493896637033, 5.6478300429236095, 5.649173390238208, 5.650523177791551, 5.651700228638664, 5.652749600367606, 5.653803389310549, 5.654860943496586, 5.65592160528744, 5.656984712197259, 5.658049596990132, 5.6591155879066815, 5.660182009241171, 5.6612481821743925, 5.662313425562115, 5.663377056029633, 5.664438386157902, 5.665495330609135, 5.666553357439181, 5.667619253188518, 5.668693088035764, 5.669774839576853, 5.670864485529262, 5.671962003739547, 5.673067371500487, 5.674180565752035, 5.675301566707402, 5.676430352285105, 5.677566899364383, 5.67857390336525, 5.679489701888897, 5.680412711288466, 5.681342911780892, 5.682280283086678, 5.683224805218148, 5.684176458484607, 5.685135223058441, 5.686101079775839, 5.687074009586809, 5.688053992058957, 5.689041006571219, 5.690035032398044, 5.691036048739608, 5.69204403498013, 5.693058970141533, 5.694080833123921, 5.695109602979208, 5.696145258338546, 5.697187777685607, 5.698237139431438, 5.699293322110199, 5.700356018296463, 5.701424384344972, 5.702499562261197, 5.703578868448445, 5.7044718892177455, 5.705371317206677, 5.706277132701344, 5.707189315561405, 5.708107845960747, 5.7090327053437875, 5.709963873158722, 5.7109013285117, 5.711845050478101, 5.7127950180648135, 5.713751209746599, 5.714713603771219, 5.714723909762819, 5.715730534539485, 5.716740721949814, 5.717754462204866, 5.7187717453866895, 5.719792561514757, 5.720816900564533, 5.721845179893418, 5.72287702926745, 5.723912351122052, 5.724951135336806, 5.72599337173521, 5.727039050080861, 5.728088160073185, 5.729129764151749, 5.730027324296127, 5.73092808705722, 5.731832043021479, 5.732739182697117, 5.733649496484352, 5.734562974661897, 5.735479607376869, 5.736399384628525, 5.737322296248677, 5.738248331877873, 5.739177480936038, 5.740109732585773, 5.740124873770086, 5.74153001823303, 5.74293825584187, 5.742954559448289, 5.744399998363856, 5.745848643037701, 5.747300476932377, 5.748755482613748, 5.750213641408648, 5.751674932830408, 5.7531393335061125, 5.75314800878061, 5.753641231312305, 5.754135930509715, 5.754632104236295, 5.754639179827033, 5.75524182386494, 5.7558344567705255, 5.756432523707, 5.757036167654989, 5.757645383109041, 5.758260164534164, 5.7588805063655615, 5.759506403008385, 5.760137848837475, 5.760774838197103, 5.761417365400717, 5.76206542473068, 5.762719010438012, 5.763378116742128, 5.764042737830576, 5.764712867858775, 5.765388500949749, 5.766069631193865, 5.7667562526485625]}, "enthalpy": {"final": [155644.05306726185, 156278.14524883797, 156816.6023812191, 157279.79614809557, 157287.5525118233, 157936.3832595479, 158446.42737942256, 158868.21344985938, 158872.41850689478, 159296.68563594317, 159728.22151189987, 160163.2646249064, 160599.70019214475, 161036.3352388845, 161472.43882977424, 161907.59218025973, 162341.61563055674, 162774.40801947925, 163205.9112167748, 163636.09168148902, 164064.92974642306, 164492.41374180172, 164918.53608940385, 165343.29163392013, 165766.67665350498, 166188.68824270222, 166609.31981376774, 167028.56160193347, 167446.41630259145, 167862.8850704657, 168277.96746929365, 168691.6625605456, 169103.9690583275, 169514.88535810594, 169924.4095699408, 170332.53902728632, 170739.26840068088, 171144.54329452812, 171548.35566907207, 171950.7272673814, 172351.6371318474, 172751.03298221738, 173148.94893490514, 173152.49998476758, 173483.04310982913, 173822.5270173933, 174167.42001954265, 174171.63033880707, 174515.0519303582, 174848.64144586032, 175175.72180729502, 175179.28011009673, 175469.2364592904, 175764.7584561867, 176063.80053891407, 181962.67728888188, 181966.74801954167, 182304.6849019293, 182641.4715231254, 182977.1065970385, 183311.589009236, 183315.58585728318, 183711.93877841806, 184106.64926544533, 184499.71523032783, 184891.13460400488, 185280.90550043606, 185669.02564169836, 186055.4889963934, 186440.29117908014, 186823.4293714691, 187204.90114173963, 187584.7044727215, 187962.83734761737, 188339.29775015565, 188714.08334737804, 189087.18584426117, 189458.59941239937, 189828.32233256503, 190196.35159307756, 190562.68446397557, 190927.31897574247, 191290.25316550987, 191294.43815599734, 191721.13592577528, 192145.5875130753, 192567.78561518283, 192987.6918610651, 193405.1708423579, 193820.02142109204, 194232.14045505982, 194641.4266450281, 195047.77938203717, 195451.0951694999, 195851.27796938154, 196248.2342024438, 196641.87223702337, 197032.10227408307, 197418.83657853506, 197801.98965390053, 198181.47825256843, 198557.22126419912, 198929.13962516154, 199297.15656377925, 199661.19681363847, 200021.1783144202, 200377.98902802964, 200732.72154299615, 201085.38917844693, 201435.98867840026, 201784.5166954825, 202130.96978608784, 202475.34474645276, 202817.63851596773, 203157.84637918524, 203495.96471615898, 203831.99038942132, 204165.9191665946, 204497.7428651002, 204827.4579667797, 205155.06140626105, 205480.5503422745, 205803.921761646, 206125.17247484857, 206444.2993343046, 206761.29882749374, 207076.167353433, 207388.90198606523, 207699.4998702914, 208007.95817951273, 208314.27410036387, 208618.44469968302, 208920.46720541452, 209220.33888381632, 209518.05689787414, 209813.6186039031, 210107.02141119092, 210398.26274344986, 210687.33993646764, 210974.25017851518, 211258.98469742725, 211541.53783196353, 211821.9073133328, 212100.08801695774, 212376.0750457575, 212649.86619958657, 212921.45948674454, 213190.85273173585, 213458.04306340293, 213723.02865386673, 213985.80784301015, 214246.3789730845, 214504.74040900238, 214760.89078833832, 215014.82885929453, 215017.0340927193, 215222.58367093583, 215427.11008511792, 215630.61285395696, 215833.0915620164, 216034.54582415003, 216234.97527563944, 216434.14553721508, 216632.25250503977, 216829.34370276774, 217025.41886383938, 217220.4777499047, 217414.52015321402, 217607.54589927426, 217799.55482372403, 217990.54562565227, 218180.51734828576, 218369.46998755142, 218557.40358271266, 218744.3182334251, 218930.21410785185, 219115.09144893842, 219298.95058424643, 219481.79193775577, 219663.61604419473, 219844.42356666067, 220024.21531860146, 220026.07525020812, 220186.45115819664, 220345.94274773568, 220347.78157069234, 220510.14989068912, 220671.59815066896, 220832.12868871674, 220991.7443852755, 221150.44886787471, 221308.24685348215, 221465.14478554533, 221466.9158331155, 221589.542005859, 221711.601731735, 221833.09458529696, 221834.84722404776, 222004.63304825727, 222171.66586874024, 222335.93365513068, 222497.42887491788, 222656.14426823, 222812.07255231918, 222965.2064215098, 223115.53854714727, 223263.06157754757, 223407.76813794562, 223549.6508304437, 223688.70223396027, 223824.91490417824, 223958.28137349343, 224088.79415096313, 224216.44572225405, 224341.22854959074, 224463.13507170381, 224582.15770377783]}, "pressure": {"final": [5204.903310133675, 5225.914920195607, 5246.920298925266, 5267.919817388084, 5268.152074795892, 5288.155475254602, 5308.163630345304, 5328.17749913082, 5328.393548625588, 5349.903826546931, 5371.420242784362, 5392.942653681848, 5414.471040954587, 5436.00539640149, 5457.545748087023, 5479.092136419495, 5500.644570281912, 5522.203059028034, 5543.767612744539, 5565.338241954746, 5586.914958411493, 5608.497785675964, 5630.086738615918, 5651.681828172065, 5673.2830653592155, 5694.890461256057, 5716.504027008922, 5738.123773888365, 5759.749713221329, 5781.381856347307, 5803.020214635637, 5824.664799494427, 5846.3156223729275, 5867.97269476432, 5889.636028207555, 5911.305638066002, 5932.981519605128, 5954.663112822604, 5976.350081790118, 5998.04243763913, 6019.740206063551, 6041.443435706104, 6063.152140467356, 6063.450894223064, 6092.946963746648, 6122.446945751108, 6151.950804282797, 6152.185291300629, 6169.912452388689, 6187.643156752726, 6205.377459394244, 6205.676428953543, 6231.665221595041, 6257.657065854402, 6283.6519416739575, 6293.072764357168, 6293.343959037523, 6314.2270333920005, 6335.112992666165, 6356.001847954613, 6376.893610362978, 6377.144995380677, 6402.1539436441135, 6427.1671110481975, 6452.184516574215, 6477.206179225932, 6502.232118027906, 6527.2623310510035, 6552.29636994852, 6577.333972606711, 6602.375154292892, 6627.419930314664, 6652.468316014788, 6677.5203267700335, 6702.575977991001, 6727.635287612156, 6752.698330221791, 6777.765158521497, 6802.835788791863, 6827.910237339442, 6852.988520503252, 6878.070654647511, 6903.1566561596, 6903.408856795826, 6928.538285756517, 6953.671135559508, 6978.807104296397, 7003.942885545295, 7029.065662055096, 7054.155952557671, 7079.203450861506, 7104.197900946614, 7129.1289824055775, 7153.986026465995, 7178.758822661325, 7203.437241996379, 7228.011200242978, 7252.470663389621, 7276.805653079129, 7301.006252028492, 7325.062609430744, 7348.964946335124, 7372.703561004983, 7396.2688342465335, 7419.651182573266, 7442.840596034585, 7465.923498177873, 7489.007336852222, 7512.0937581797625, 7535.182776022698, 7558.274404280535, 7581.36865689085, 7604.465547828907, 7627.565091105071, 7650.667300770744, 7673.772190921059, 7696.8797756876675, 7719.990013896124, 7743.102635144979, 7766.21762652738, 7789.335000523068, 7812.454769657812, 7835.576946502805, 7858.701543676247, 7881.8285738433715, 7904.95804971703, 7928.089984060488, 7951.224389683998, 7974.361279442612, 7997.500666235808, 8020.642563007209, 8043.786982744879, 8066.933938481172, 8090.083443291705, 8113.235510295702, 8136.3901526555155, 8159.547383575625, 8182.707216302286, 8205.869664123782, 8229.034742918891, 8252.202514467268, 8275.373017739861, 8298.546265648194, 8321.7221195783, 8344.900446164977, 8368.081257779671, 8391.26456683329, 8414.450385774922, 8437.638727096139, 8460.829603328802, 8484.02302704097, 8507.21901083625, 8530.417567353968, 8553.618709267768, 8576.822449284302, 8577.055352742753, 8599.496506120022, 8621.940341332955, 8644.386863677673, 8666.836078467788, 8689.287991033978, 8711.742606723765, 8734.199931476698, 8756.659971794186, 8779.12273301262, 8801.588220484256, 8824.05643957697, 8846.52739567399, 8869.001094173609, 8891.47753783307, 8913.956605895472, 8936.438200964894, 8958.922327665961, 8981.408990641426, 9003.898194551752, 9026.389944074597, 9048.884243904302, 9071.381098751293, 9093.880513341439, 9116.38249241531, 9138.887040727353, 9161.394163044937, 9161.725901193136, 9192.111275280056, 9222.499196804705, 9222.850618697723, 9253.972884752206, 9285.097811575986, 9316.225393740755, 9347.35562590816, 9378.48850282546, 9409.624019319492, 9440.762170287782, 9440.97255830546, 9453.607482623558, 9466.243447264551, 9478.88045521147, 9479.061224361247, 9496.678538658947, 9514.297631516725, 9531.918516557536, 9549.54121065729, 9567.165730436458, 9584.7920925113, 9602.420313493762, 9620.050409991401, 9637.68239860729, 9655.316295939914, 9672.95211858309, 9690.589883125871, 9708.22960615243, 9725.871304241991, 9743.514993968713, 9761.160691901583, 9778.808414604326, 9796.458178635301, 9814.110000547387]}, "velocity": {"final": [14.356548522898974, 14.350776998300296, 14.344204487747538, 14.337009636317351, 9.323596444239778, 9.320272142352046, 9.316193105873499, 9.311638929658743, 9.311587922853974, 9.307050295857294, 9.302995592558847, 9.298973482902989, 9.294962538532891, 9.290956247186587, 9.286916355907215, 9.282872390035743, 9.278826162035388, 9.27477714127093, 9.270725027131897, 9.266669650216693, 9.262607613432928, 9.258535506259445, 9.254460132276295, 9.250381472090412, 9.24629951425984, 9.24221425207008, 9.238125660912695, 9.23403370109179, 9.229938395960543, 9.22583976142062, 9.221737805791015, 9.217632535299346, 9.213523954879225, 9.209412068334323, 9.205296878521853, 9.20118600342278, 9.197170708847361, 9.193769474512587, 9.190363756592195, 9.18695368076728, 9.183517273596241, 9.180068010311631, 9.176614507392134, 14.110850087981483, 14.10212270538233, 14.093482387749619, 14.084902749111587, 9.15964642471026, 9.15693573128285, 9.154180648863733, 9.151396882192195, 14.072073755940805, 14.064462499521525, 14.056907468469156, 14.04939366661854, 12.838498660672437, 8.34909649443629, 8.347119693388962, 8.345133294311827, 8.34313733550014, 8.34113185589772, 8.341107597820876, 8.338686296127044, 8.336251580944959, 8.333803518270498, 8.331342174272093, 8.3288676158397, 8.326474787307282, 8.32455152788201, 8.322616095374789, 8.320668540133408, 8.318708913923166, 8.316737269998338, 8.31475366171666, 8.312758142538373, 8.31075133012547, 8.308735785730741, 8.30670837296844, 8.304669147262237, 8.30261815994083, 8.300555463377709, 8.298481112512839, 8.296395162397813, 8.296375879212086, 8.294482019526393, 8.29257360003934, 8.290650717798538, 8.288713762646287, 8.286764058705506, 8.28480360151387, 8.282833513520236, 8.280854924063794, 8.279130312547103, 8.277593381689659, 8.276050555422248, 8.27450279465568, 8.272951067180463, 8.271396346442902, 8.269839611381789, 8.268281846079045, 8.266724038901495, 8.265167181273448, 8.263612266519257, 8.262060289723173, 8.260512250375003, 8.258971184311422, 8.257429115870451, 8.255876160704998, 8.254312229234689, 8.252737366876438, 8.251151618902552, 8.249555030429006, 8.247947647407512, 8.246329516330828, 8.244700678962905, 8.243061180432786, 8.24141106740462, 8.239949585339069, 8.238620921310917, 8.237282229047457, 8.235933547212072, 8.234574915219472, 8.233206372091715, 8.231827956450566, 8.230439707145514, 8.22904166209377, 8.227633859076743, 8.226216337903349, 8.224789138679942, 8.223352301687287, 8.221905867335805, 8.22044987579143, 8.218984367763978, 8.217509384158303, 8.216024965678361, 8.214531153652466, 8.213027989637359, 8.211515515309094, 8.209993772179994, 8.208463213554717, 8.20692506399478, 8.205377689112488, 8.203824959657382, 8.202540671432466, 8.201247575111465, 8.199945707544156, 8.198635106210595, 8.197315808155725, 8.195987848616483, 8.194651265712322, 8.193306098066634, 8.191952384358741, 8.19059016337717, 8.189219474683238, 8.187840358171863, 8.187825592136743, 8.186383594817546, 8.184937004523208, 8.183485840402506, 8.182030121782358, 8.18056986807231, 8.179105098737626, 8.177635222423714, 8.17616077386538, 8.174681897632368, 8.173198613266239, 8.171710940379961, 8.17021889866302, 8.168722507887157, 8.1672373652859, 8.165958036875427, 8.164674546523337, 8.163386911750166, 8.162095150182227, 8.160799279593608, 8.159499317925007, 8.158195283297639, 8.156887194035887, 8.155575068694668, 8.154258926092712, 8.152938785353664, 8.151614665957533, 12.534755443089642, 12.531687769116104, 12.528614848385892, 12.528579281047975, 12.525426767982248, 12.522268854521187, 12.519105586055547, 12.515937009863972, 12.51276317585267, 12.509584137797685, 12.506399955666463, 3.6168107930840323, 3.616500747235793, 3.6161898265278545, 3.6158780327676716, 3.278409441463722, 3.278066151995759, 3.277728635362341, 3.2773880943909197, 3.277044449600306, 3.276697706098497, 3.276347869024816, 3.2759949435499576, 3.275638934876019, 3.275279848236547, 3.2749176888965743, 3.274552462152658, 3.2741841733329156, 3.2738128277970695, 3.27343843093648, 3.273060988174188, 3.272680504964949, 3.272296986795276, 3.2719104391834715, 3.271520867679672]}}, "annuli": {"1": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9, 3490, 3490.1, 3500.06338028169, 3510.0267605633803, 3519.9901408450705, 3529.9535211267603, 3539.9169014084505, 3549.8802816901407, 3559.843661971831, 3569.807042253521, 3579.7704225352113, 3589.7338028169015, 3599.6971830985913, 3609.6605633802815, 3619.6239436619717, 3629.587323943662, 3639.550704225352, 3649.5140845070423, 3659.4774647887325, 3669.4408450704223, 3679.4042253521125, 3689.3676056338027, 3699.330985915493, 3709.294366197183, 3719.257746478873, 3729.221126760563, 3739.1845070422532, 3749.1478873239435, 3759.1112676056337, 3769.074647887324, 3779.038028169014, 3789.001408450704, 3798.964788732394, 3808.9281690140842, 3818.8915492957744, 3828.8549295774646, 3838.818309859155, 3848.781690140845, 3858.745070422535, 3868.708450704225, 3878.671830985915, 3888.6352112676054, 3898.5985915492956, 3908.561971830986, 3918.525352112676, 3928.488732394366, 3938.452112676056, 3948.415492957746, 3958.3788732394364, 3968.3422535211266, 3978.305633802817, 3988.269014084507, 3998.232394366197, 4008.195774647887, 4018.159154929577, 4028.1225352112674, 4038.0859154929576, 4048.049295774648, 4058.012676056338, 4067.976056338028, 4077.939436619718, 4087.902816901408, 4097.866197183099, 4107.829577464789, 4117.792957746478, 4127.756338028169, 4137.71971830986, 4147.683098591549, 4157.646478873239, 4167.609859154929, 4177.573239436619, 4187.536619718309, 4197.5, 4207.46338028169, 4217.4267605633795, 4227.39014084507, 4237.353521126761, 4247.316901408451, 4257.28028169014, 4267.243661971831, 4277.207042253522, 4287.170422535211, 4297.133802816901, 4307.097183098591, 4317.060563380281, 4327.023943661971, 4336.987323943662, 4346.950704225352, 4356.9140845070415, 4366.877464788732, 4376.840845070423, 4386.804225352113, 4396.767605633802, 4406.730985915493, 4416.694366197184, 4426.657746478873, 4436.621126760563, 4446.584507042253, 4456.547887323943, 4466.511267605633, 4476.474647887324, 4486.438028169014, 4496.4014084507035, 4506.364788732394, 4516.328169014085, 4526.2915492957745, 4536.254929577464, 4546.218309859155, 4556.181690140846, 4566.145070422535, 4576.108450704225, 4586.071830985915, 4596.035211267605, 4605.998591549295, 4615.961971830986, 4625.925352112676, 4635.888732394365, 4645.852112676056, 4655.815492957747, 4665.7788732394365, 4675.742253521126, 4685.705633802816, 4695.669014084507, 4705.632394366197, 4715.595774647887, 4725.559154929577, 4735.522535211267, 4745.485915492957, 4755.449295774648, 4765.412676056338, 4775.376056338027, 4785.339436619718, 4795.302816901409, 4805.2661971830985, 4815.229577464788, 4825.192957746478, 4835.156338028169, 4845.119718309859, 4855.083098591549, 4865.046478873239, 4875.009859154929, 4884.973239436619, 4894.93661971831, 4904.9], "initial_mass": 171069.99776699417, "temperature": {"start": [4.439999999999998, 4.625415864083152, 4.810802753046573, 4.996131696298562, 5.181373732302632, 5.366542435621966, 5.551709016426514, 5.554478897964373, 5.557248779502174, 5.813878303983017, 6.07050782846386, 6.327137352944703, 6.583766877425546, 6.840396401906389, 7.097025926387232, 7.099795807925091, 7.102565689462892, 7.378295176489246, 7.654024663515543, 7.929754150541896, 8.205483637568193, 8.481213124594547, 8.756942611620843, 9.032672098647197, 9.308401585673494, 9.584131072699847, 9.859860559726144, 10.135590046752498, 10.411319533778794, 10.687049020805148, 10.962778507831445, 11.238507994857798, 11.514237481884095, 11.789966968910448, 12.065696455936745, 12.341425942963042, 12.617155429989396, 12.89288491701575, 13.168614404042046, 13.444343891068343, 13.720073378094696, 13.99580286512105, 14.271532352147347, 14.547261839173643, 14.822991326199997, 15.09872081322635, 15.374450300252647, 15.650179787278944, 15.925909274305297, 16.20163876133165, 16.477368248357948, 16.7530977353843, 17.028827222410598, 17.304556709436895, 17.58028619646325, 17.856015683489602, 18.1317451705159, 18.407474657542195, 18.68320414456855, 18.958933631594903, 19.2346631186212, 19.510392605647496, 19.78612209267385, 20.061851579700203, 20.3375810667265, 20.613310553752797, 20.88904004077915, 21.164769527805447, 21.4404990148318, 21.716228501858097, 21.99195798888445, 22.267687475910748, 22.5434169629371, 22.819146449963398, 23.09487593698975, 23.37060542401605, 23.646334911042402, 23.9220643980687, 24.197793885095052, 24.47352337212135, 24.749252859147703, 25.024982346174, 25.300711833200353, 25.57644132022665, 25.852170807253003, 25.854940688790805, 25.857710570328663, 26.11715614103963, 26.376601711750595, 26.636047282461618, 26.895492853172584, 27.15493842388355, 27.414383994594516, 27.417153876132375, 27.419923757670176, 27.644745809158167, 27.869567860646157, 28.094389912134147, 28.319211963622138, 28.544034015110128, 28.76885606659812, 28.77162594813592, 28.774395829673722, 29.00286489185322, 29.23133395403272, 29.459803016212163, 29.688272078391662, 29.916741140571105, 30.145210202750604, 30.21736561681132, 30.289521030872038, 30.292290912409896, 30.295060793947698, 30.525272573261418, 30.75548435257508, 30.9856961318888, 31.215907911202464, 31.446119690516184, 31.676331469829904, 31.906543249143567, 32.13675502845729, 32.13952490999509, 32.14229479153295, 32.41783205498757, 32.693369318442194, 32.96890658189676, 33.244443845351384, 33.51998110880601, 33.79551837226063, 34.071055635715254, 34.34659289916988, 34.6221301626245, 34.89766742607907, 35.17320468953369, 35.448741952988314, 35.72427921644294, 35.99981647989756, 36.275353743352184, 36.55089100680681, 36.826428270261374, 37.101965533716, 37.37750279717068, 37.653040060625244, 37.92857732407987, 38.20411458753449, 38.479651850989114, 38.75518911444374, 39.03072637789836, 39.306263641352984, 39.58180090480755, 39.857338168262174, 40.1328754317168, 40.40841269517142, 40.683949958626044, 40.95948722208067, 41.23502448553529, 41.51056174898986, 41.78609901244448, 42.061636275899104, 42.33717353935373, 42.61271080280835, 42.888248066262975, 43.1637853297176, 43.439322593172164, 43.714859856626845, 43.717629738164646, 43.72039961970245, 43.99637345066975, 44.27234728163705, 44.548321112604356, 44.82429494357166, 45.100268774538904, 45.376228838361385, 45.65216023623867, 45.92806195759658, 46.203852610862555, 46.479420854259274, 46.75472962389546, 47.0297419198489, 47.304420782041575, 47.578729295207154, 47.85263059385204, 48.12608786721006, 48.39906436418926, 48.67152339831148, 48.94342835264257, 49.214742684713485, 49.48542993143144, 49.75545371398039, 50.024777742709944, 50.29336582201279, 50.56118185518886, 50.828189849296734, 51.094353919990795, 51.35963829634392, 51.62400732565487, 51.88742547823978, 52.149857352207164, 52.411267678215836, 52.67162132421464, 52.93088330016428, 53.18901876273969, 53.44599302001262, 53.70177153611428, 53.95631993587659, 54.20960400945211, 54.46158971691153, 54.71224319281862, 54.96152883326249, 55.20940976711586, 55.45585238064638, 55.70143074750922, 55.94700239687933, 56.192574046249376, 56.438145695619426, 56.683717344989475, 56.929288994359524, 57.17486064372957, 57.42043229309968, 57.66600394246973, 57.91157559183978, 58.15714724120983, 58.40271889057988, 58.648290539949926, 58.893862189319975, 59.13943383869008, 59.38500548806013, 59.63057713743018, 59.87614878680023, 60.12172043617028, 60.367292085540385, 60.612863734910434, 60.85843538428048, 61.10400703365053, 61.34957868302058, 61.59515033239063, 61.84072198176068, 62.086293631130786, 62.331865280500836, 62.577436929870885, 62.823008579240934, 63.06858022861104, 63.31415187798103, 63.55972352735114, 63.80529517672119, 64.05086682609124, 64.29643847546129, 64.54201012483134, 64.78758177420139, 65.03315342357143, 65.27872507294154, 65.52429672231159, 65.76986837168164, 66.01544002105169, 66.26101167042174, 66.50658331979184, 66.7521549691619, 66.99772661853194, 67.24329826790199, 67.48886991727204, 67.73444156664215, 67.9800132160122, 68.22558486538219, 68.4711565147523, 68.71672816412234, 68.9622998134924, 69.2078714628625, 69.45344311223249, 69.6990147616026, 69.94458641097265, 70.1901580603427, 70.43572970971275, 70.68130135908285, 70.9268730084529, 71.17244465782295, 71.418016307193, 71.66358795656305, 71.9091596059331, 72.15473125530315, 72.40030290467325, 72.6458745540433, 72.89144620341335, 73.1370178527834, 73.38258950215351, 73.6281611515235, 73.87373280089355, 74.1193044502636, 74.3648760996337, 74.61044774900375, 74.8560193983738, 75.10159104774385, 75.34716269711396, 75.59273434648401, 75.83830599585406, 76.0838776452241, 76.32944929459416, 76.5750209439642, 76.82059259333425, 77.06616424270436, 77.31173589207441, 77.55730754144446, 77.80287919081451, 78.04845084018461, 78.29402248955466, 78.53959413892471, 78.78516578829476, 79.03073743766481, 79.27630908703486, 79.52188073640491], "final": [58.29799580020824, 60.71325030290632, 63.075215782606506, 64.93752517786749, 66.83951903301886, 68.33497200143734, 69.80046794447935, 69.90957131677732, 70.02072516739236, 72.11672957006289, 74.11719167994693, 75.43287083849265, 76.7758675203325, 77.63979126692874, 78.48784695842357, 76.38679014034972, 75.46055353938482, 75.46054323369049, 75.43716067348498, 75.48049609719965, 75.50656298180127, 75.56038515533157, 75.62805738844042, 75.69741937742538, 75.77870731475429, 75.86756979472989, 75.94558491423061, 76.02797379961788, 76.12053761910539, 76.21489182453917, 76.29936114019728, 76.38488950965632, 76.48015261116723, 76.56617874608935, 76.66165759746275, 76.75733447995344, 76.84352495740188, 76.92969697551052, 77.0253532622146, 77.11140346724545, 77.20694424495548, 77.30231957514383, 77.38819059368825, 77.4738485258643, 77.56902861568096, 77.65445382806558, 77.74942160933989, 77.84417463079393, 77.92935543842952, 78.01428531788281, 78.10881171530127, 78.2032024235499, 78.2879877394995, 78.37250128934431, 78.46664456683754, 78.56051599958965, 78.64472833113348, 78.72865650808365, 78.82227108669792, 78.90592325963985, 78.99928819173334, 79.0924029409885, 79.17578440932834, 79.25889960173436, 79.35174316663085, 79.43459212186963, 79.52720311155531, 79.61921144380108, 79.70181213056094, 79.78414797041899, 79.87600901096283, 79.96761859277763, 80.04966032996094, 80.1310835744896, 80.22207491243313, 80.31255861136322, 80.39340234724682, 80.47380296012454, 80.56389748245408, 80.65337898210714, 80.73317483637948, 80.81215204008987, 80.90089054939972, 80.98912556349279, 81.06752027979098, 80.86595397955205, 80.67269053539712, 80.55628629297155, 80.47350853159708, 80.44364783208306, 80.3883039129077, 80.39301361907616, 80.37759581276339, 80.5695068070658, 80.7542724357424, 80.94391607497181, 81.14397062819609, 81.2889873506121, 81.43742576567422, 81.55350697204176, 81.67053557938073, 81.4789375712952, 81.2951613965405, 81.24738117169431, 81.17370703297337, 81.1598368648896, 81.12535050120522, 81.11781458382268, 81.12724825061827, 81.17009752792563, 81.36118841794746, 81.53222772755186, 81.69345718152385, 81.75219221137286, 81.82051095702434, 81.88863978930516, 81.94718341965131, 82.00552878755491, 82.07348402391119, 82.14129978173776, 82.1994373119955, 82.46541381150263, 82.46624223096563, 82.5485845426706, 82.63061372327604, 82.7123440795009, 82.79368445484988, 82.87427611901751, 82.9542383903514, 83.03374262451996, 83.0220874374561, 82.94562823539871, 82.86916903334134, 82.7927098312839, 82.71625062922652, 82.63979142716909, 82.56333222511171, 82.48687302305427, 82.41041382099684, 82.33395461893946, 82.25749541688208, 82.18103621482464, 82.10457701276721, 82.02811781070989, 81.95165860865245, 81.87519940659502, 81.81387251108401, 81.79600953183717, 81.77814655259033, 81.76028357334343, 81.74242059409659, 81.72455761484974, 81.7066946356029, 81.68883165635606, 81.67096867710916, 81.65310569786232, 81.63524271861542, 81.61737973936863, 81.67242843464794, 81.73885573730985, 81.8042171960629, 81.86848453489415, 81.93219495590012, 81.99535009318032, 82.0580840357245, 83.24044517525158, 82.31157040688271, 82.412156180735, 82.49611211166126, 82.59637391920467, 82.67997410183568, 82.76322931548998, 82.86317328074546, 82.9626967430728, 83.0456917691809, 83.12800770789875, 83.22693449239443, 83.32536771435286, 83.40714824276665, 83.48845298372339, 83.58642476550597, 83.66719840390306, 83.76463147221784, 83.84449196420218, 83.94104735053872, 84.02007328628383, 84.11581009582659, 84.21095529706275, 84.28940854380107, 84.36726542773437, 84.46178477127086, 84.53902258054762, 84.63288100128841, 84.72602195423144, 84.80263281499663, 84.89504661643701, 84.97099140840703, 85.04624748423646, 85.13790082729304, 85.21242574023296, 85.30330561346432, 85.37706454276008, 85.46710600041877, 85.55628800762821, 85.62929331759136, 85.70153345779312, 85.78981030501654, 85.87710883372108, 85.94856436178372, 86.0184755472996, 86.10405678535943, 86.18863041634381, 86.25754405062145, 86.32612980173872, 86.41044668762942, 86.49450876776768, 86.56276765358939, 86.64657559945056, 86.71450754026444, 86.78212545555505, 86.86566257818913, 86.9329343375216, 87.01620224703095, 87.09924928056103, 87.16623238957374, 87.2328293219806, 87.31557297212555, 87.3817206721601, 87.46410663290885, 87.5462471304113, 87.61207161702953, 87.67757325192696, 87.75946775596015, 87.84080982875412, 87.90568135318858, 87.98657395883015, 88.05089367808694, 88.11489201426082, 88.19554433872054, 88.27596341122955, 88.33963746038268, 88.40298231087058, 88.4831810580207, 88.56312989026424, 88.6261335082994, 88.68881265418827, 88.76851759045712, 88.84797630249267, 88.91034771232114, 88.98949417666296, 89.05156681140056, 89.11332188222093, 89.19223057067188, 89.25366651377777, 89.33235012000011, 89.41081177590928, 89.47193057923812, 89.53273299221735, 89.61097478610054, 89.67146706219529, 89.74948454172852, 89.82727679652328, 89.88746249308201, 89.94733420589091, 90.02491390794563, 90.10227404973773, 90.16181819620635, 90.22103993038729, 90.29818591788995, 90.37512794456939, 90.43403965460027, 90.51078070922392, 90.56938367414523, 90.64591848262188, 90.70422122087365, 90.76222363339002, 90.83855742177832, 90.91454317517787, 90.97206598460201, 91.02859009877102, 91.10376346651151, 91.15999093912149, 91.23498604714882, 91.29091219792201, 91.3657265178017, 91.4399297579065, 91.49507347755343, 91.54992524084594, 91.62396553078293, 91.69783285474887, 91.75238429262447, 91.8066679656801, 91.88039386367348, 91.95389540362578, 92.0078599666474, 92.06153847137972, 92.1348649760788, 92.20805664480963, 92.26145781881843, 92.31458890374597, 92.38765571699628, 92.4605858335974, 92.51346793205278, 92.56609026955459, 92.63890673634637, 92.71162129805543, 92.76398417812612, 92.83660505844648, 92.88871280472318]}, "area": {"start": [0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.062348771842074935, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.07524606064597841, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475, 0.05168416286794475], "final": [0.06305622174913579, 0.06305732638573985, 0.06305843102234393, 0.06305935196383763, 0.06306027290533134, 0.06306104574159223, 0.06306181857785312, 0.063061871840699, 0.06306192510354487, 0.06306285775285067, 0.06306379040215648, 0.06306458784336984, 0.06306538528458319, 0.06306600901172778, 0.06306663273887235, 0.06288536338116169, 0.062704094023451, 0.06270495955934285, 0.0627058250952347, 0.0627066238149815, 0.06270742253472829, 0.06270818376366331, 0.06270894499259835, 0.06270968523822569, 0.06271042548385301, 0.06271115405557835, 0.0627118826273037, 0.06271260524781508, 0.06271332786832647, 0.0627140476868144, 0.06271476750530233, 0.06271548591219273, 0.06271620431908313, 0.06271692188136153, 0.06271763944363994, 0.06271835687414594, 0.06271907430465196, 0.06271979179500685, 0.06272050928536173, 0.06272122697121885, 0.06272194465707598, 0.06272266261636171, 0.06272338057564743, 0.06272409885442788, 0.06272481713320835, 0.06272553575841554, 0.06272625438362273, 0.0627269733785586, 0.0627276923734945, 0.06272841174118166, 0.06272913110886882, 0.06272985070291648, 0.06273057029696413, 0.06273129028773616, 0.06273201027850818, 0.06273273070703508, 0.06273345113556197, 0.06273417197886674, 0.06273489282217151, 0.06273561406935936, 0.06273633531654721, 0.06273705695557157, 0.06273777859459592, 0.06273850059576347, 0.062739222596931, 0.06273994499703676, 0.06274066739714253, 0.06274138980390863, 0.06274211221067473, 0.06274283509488844, 0.06274355797910217, 0.06274428131145889, 0.0627450046438156, 0.06274572881109505, 0.0627464529783745, 0.06274717796808812, 0.06274790295780176, 0.06274862858458319, 0.06274935421136461, 0.06275008065125563, 0.06275080709114667, 0.06275153466631682, 0.06275226224148697, 0.06275299065004625, 0.06275371905860554, 0.06275399192236228, 0.06275426478611901, 0.06275520884291187, 0.06275615289970474, 0.06275701388002909, 0.06275787486035343, 0.06275868149910298, 0.06275948813785252, 0.06275924488558034, 0.06275900163330815, 0.06275941010127631, 0.06275981856924448, 0.06276029743362194, 0.0627607762979994, 0.06276129928841503, 0.06276182227883068, 0.06276208203564398, 0.0627623417924573, 0.06276313416736695, 0.0627639265422766, 0.06276466555711181, 0.06276540457194703, 0.06276610688085246, 0.06276680918975791, 0.06276661463947535, 0.0627664200891928, 0.06276619752330789, 0.06276597495742299, 0.06276620850283188, 0.06276644204824076, 0.06276667588445765, 0.06276690972067454, 0.06276714387862789, 0.06276737803658124, 0.06276761257034584, 0.06276784710411046, 0.06915237780702228, 0.07553690850993411, 0.07553710342368222, 0.07553729833743032, 0.07553749360690595, 0.0755376888763816, 0.0755378845222704, 0.07553808016815919, 0.0755382762452358, 0.07553847232231242, 0.07553866875653742, 0.07553886519076243, 0.07553906207383002, 0.0755392589568976, 0.0755394567973321, 0.07553965463776659, 0.07553985279691187, 0.07554005095605716, 0.07554024932902534, 0.07554044770199353, 0.07554064643494582, 0.07554084516789811, 0.07554104426149752, 0.07554124335509692, 0.07554144280999359, 0.07554164226489025, 0.07554184208173144, 0.07554204189857262, 0.07554224222927489, 0.07554244255997715, 0.07554264427092455, 0.07554284598187196, 0.0755430480191786, 0.07554325005648525, 0.07554345246301783, 0.07554365486955042, 0.07554385783919579, 0.07554406080884116, 0.0755442641402994, 0.07554446747175762, 0.07554467116611394, 0.07554487486047025, 0.07554507891920957, 0.0755452829779489, 0.06369362876273896, 0.05184197454752901, 0.05184233335240804, 0.05184269215728707, 0.0518430516407985, 0.05184341112430993, 0.05184377125385603, 0.05184413138340213, 0.05184449192205175, 0.05184485246070136, 0.051845213831803155, 0.05184557520290494, 0.0518459366178419, 0.051846298032778855, 0.05184665910649892, 0.051847020180218986, 0.051847380739748414, 0.051847741299277834, 0.05184810177356988, 0.05184846224786193, 0.05184882221937441, 0.0518491821908869, 0.051849540905901804, 0.05184989962091672, 0.051850256852209654, 0.0518506140835026, 0.05185096960343066, 0.05185132512335874, 0.051851678678412116, 0.05185203223346549, 0.05185238362925303, 0.051852735025040564, 0.05185308403872967, 0.05185343305241878, 0.05185377949953756, 0.05185412594665634, 0.05185446963076722, 0.05185481331487811, 0.05185515395495103, 0.05185549459502395, 0.05185583195637487, 0.05185616931772579, 0.05185650318086833, 0.051856837044010874, 0.051857168540667534, 0.051857500037324186, 0.051857830434596464, 0.05185816083186874, 0.051858491844499185, 0.05185882285712963, 0.051859154489931975, 0.051859486122734326, 0.051859818375845065, 0.05186015062895581, 0.051860483478594024, 0.05186081632823224, 0.05186114983347552, 0.0518614833387188, 0.05186181739378093, 0.05186215144884305, 0.05186248623313126, 0.051862821017419465, 0.0518631566469747, 0.05186349227652992, 0.0518638285195764, 0.05186416476262289, 0.051864501618481704, 0.05186483847434051, 0.051865176508157466, 0.051865514541974425, 0.05186585360972203, 0.05186619267746964, 0.051866532355297645, 0.05186687203312565, 0.05186721232628267, 0.0518675526194397, 0.0518678935369347, 0.05186823445442971, 0.05186857601837884, 0.05186891758232798, 0.05186925976187045, 0.051869601941412914, 0.051869944705739274, 0.051870287470065626, 0.05187063080266763, 0.051870974135269636, 0.05187131807063579, 0.05187166200600194, 0.051872006547037344, 0.051872351088072755, 0.05187269623110751, 0.05187304137414226, 0.051873387117778266, 0.05187373286141427, 0.0518740791941293, 0.05187442552684433, 0.0518747724420659, 0.051875119357287475, 0.05187546686861025, 0.05187581437993302, 0.05187616251231335, 0.051876510644693674, 0.05187685938861437, 0.05187720813253507, 0.05187755746518771, 0.05187790679784036, 0.051878256716849466, 0.051878606635858575, 0.05187895712558868, 0.05187930761531878, 0.051879658675971274, 0.05188000973662377, 0.05188036169788781, 0.05188071365915185, 0.05188106747570608, 0.0518814212922603, 0.05188177567292579, 0.05188213005359128, 0.05188248500694093, 0.051882839960290576, 0.05188319637103731, 0.05188355278178405, 0.05188390974785752, 0.05188426671393099, 0.051884624250678954, 0.05188498178742691, 0.05188533983493566, 0.05188569788244441, 0.05188605653511091, 0.051886415187777396, 0.05188677438473303, 0.05188713358168866, 0.051887493306865186, 0.05188785303204171, 0.051888213272113834, 0.05188857351218596, 0.05188893422829981, 0.051889294944413654, 0.05188965615633185, 0.051890017368250045, 0.05189037907537163, 0.05189074078249322, 0.05189110297682322, 0.05189146517115322]}, "density": {"start": [8.693990147785716, 8.693259954958688, 8.692530045768908, 8.69180042130682, 8.69107136371085, 8.690342666476617, 8.68961412106774, 8.68960322365137, 8.689592326266645, 8.688582791997552, 8.687573529351642, 8.686564470894856, 8.685555681397194, 8.684547106264692, 8.683538802634775, 8.683527920871914, 8.683517039140677, 8.682433935705419, 8.681351145614224, 8.680268602747239, 8.679186373146171, 8.67810439064729, 8.67702272133622, 8.675941299005391, 8.67486018354211, 8.673779307384288, 8.672698744264604, 8.671618427887251, 8.670538424470049, 8.669458667673585, 8.668379223759324, 8.667300026344318, 8.666221141733608, 8.665142503500778, 8.664064177994382, 8.662986093925795, 8.661908313564513, 8.660830779344295, 8.6597535577013, 8.658676582078263, 8.657599918954705, 8.656523501730161, 8.65544739692739, 8.654370380908835, 8.653293296598692, 8.652216459617858, 8.651139932883416, 8.650063643031256, 8.648987666756048, 8.647911937570786, 8.646836521884472, 8.645761353166776, 8.644686497870074, 8.643611889420775, 8.642537594314541, 8.641463545934611, 8.640389810819867, 8.639316320317338, 8.638243131304494, 8.637170188781667, 8.63609755937477, 8.635025176337049, 8.633953106337499, 8.632881282586451, 8.631809771795854, 8.630738507133199, 8.629667555353311, 8.62859684958091, 8.627526456022759, 8.626456295286124, 8.6253864472834, 8.624316845053107, 8.623247555479159, 8.622178511557516, 8.621109780214697, 8.620041294404157, 8.618973121094966, 8.617905193198142, 8.616837577725226, 8.615770207544807, 8.614703136893423, 8.613636310616442, 8.61256979661498, 8.611503075713392, 8.61043561621228, 8.610424894140456, 8.61041417210027, 8.60940998465293, 8.608406074767903, 8.60740238310801, 8.606398968945708, 8.605395772908423, 8.604392854304036, 8.604382148164357, 8.604371442056294, 8.603502541191723, 8.602633842149668, 8.601765306761626, 8.600896979615813, 8.600028816058996, 8.599160860702373, 8.599150168227055, 8.599139475783335, 8.598257612835763, 8.597375964853637, 8.596494485674965, 8.59561322141766, 8.59473212589576, 8.593851245251168, 8.59357307936036, 8.593294934899204, 8.593284257903909, 8.593273580940192, 8.592386278429425, 8.591499186986567, 8.590612262430252, 8.589725555941673, 8.588839020545702, 8.587952703172455, 8.587066556822423, 8.586180628450125, 8.586169970103196, 8.586159311787819, 8.585099186843063, 8.584039374087759, 8.582979806110083, 8.581920550244787, 8.580861539038416, 8.579802833883905, 8.57874436574895, 8.577686209578689, 8.576628297835825, 8.575570697980705, 8.574513342434635, 8.573456298699394, 8.57239949915496, 8.571343011344485, 8.57028676760668, 8.56923083552601, 8.56817448755702, 8.567117631421286, 8.566061020766485, 8.56500472298807, 8.563948670567525, 8.562892930946216, 8.561837436564185, 8.560782254904275, 8.559727318365166, 8.558672694471108, 8.557618315579466, 8.556564246260125, 8.55551041138486, 8.554456889006934, 8.553403611400475, 8.552350646214403, 8.551297925681753, 8.550245517492577, 8.54919335383889, 8.5481415024518, 8.547089895482376, 8.546038600702722, 8.544987548709656, 8.543936796941665, 8.542886289361517, 8.5418360938239, 8.541825537807856, 8.541814981823345, 8.540763372580894, 8.539712076292789, 8.538661024729855, 8.537610286044231, 8.53655978728832, 8.53550966755259, 8.534459877246103, 8.533410541801187, 8.532361732612298, 8.531314304917066, 8.530267845940278, 8.529223123025423, 8.528179572825882, 8.527138111853349, 8.526098026912136, 8.525059569843325, 8.524022087942823, 8.522987398399467, 8.521954494907092, 8.520924720646812, 8.51989693062303, 8.518872627502894, 8.517850508683232, 8.516832220847752, 8.515816313940592, 8.5148045797432, 8.51379542132171, 8.512790774805408, 8.511788897039912, 8.510791867671726, 8.509797792802754, 8.508808892598411, 8.507823141172622, 8.506842902394897, 8.505865999220914, 8.504894936063259, 8.503927393111873, 8.50296601417119, 8.502008337734102, 8.501057145766385, 8.500109835453667, 8.499169335559658, 8.498232906283377, 8.49730361119288, 8.496377057375426, 8.49545078336638, 8.4945246786291, 8.49359882144681, 8.492673157295869, 8.491747740645959, 8.490822516945448, 8.489897540692034, 8.488972757306145, 8.488048221313445, 8.487123878106397, 8.486199770742264, 8.485275855792649, 8.484352188133453, 8.483428713098519, 8.482505017328053, 8.481580737872935, 8.480656706675358, 8.479732869213146, 8.478809279954389, 8.477885884348924, 8.476962736892851, 8.47603978300804, 8.47511707122804, 8.474194547170688, 8.473272271159647, 8.472350188560366, 8.471428353953403, 8.470506712676404, 8.469585319337765, 8.468664119247359, 8.46774316704138, 8.466822408001981, 8.465901896793099, 8.4649815786692, 8.464061507809644, 8.463141618737156, 8.462221977392403, 8.461302528973926, 8.46038332822935, 8.45946432032966, 8.458545560050071, 8.457626992534053, 8.456708672584352, 8.455790545316978, 8.454872665562167, 8.453954978408506, 8.453037538713676, 8.452120284777148, 8.451203273312272, 8.45028645429068, 8.449369882625483, 8.44845350332257, 8.447537371322401, 8.446621431603612, 8.44570573913394, 8.444790238864815, 8.443874985791204, 8.442959924837377, 8.442045111025484, 8.441130487942447, 8.440216060403381, 8.439300652469639, 8.4383854926451, 8.437470525961894, 8.436555807334086, 8.435641281766529, 8.434727004200592, 8.43381291961389, 8.43289908297506, 8.431985439234525, 8.431072043388129, 8.430158840359116, 8.429245877646382, 8.428333103560481, 8.427420577266277, 8.426508243632185, 8.42559615773614, 8.424684264419538, 8.423772618787362, 8.422861165654028, 8.42194996015152, 8.421038947067329, 8.42012818156039, 8.419217608391298, 8.418307280646731, 8.417397135653257, 8.416487238134893, 8.415577532797897, 8.414668074882513, 8.413758809068245, 8.412849790622118, 8.411940964196921, 8.41103238508642, 8.410123997916735, 8.409215858008325, 8.408307909960687, 8.407400209120931], "final": [8.58814547200779, 8.577290174585132, 8.566680241950564, 8.558354739114119, 8.549849346781253, 8.543202322630018, 8.536693316525104, 8.536197687878731, 8.535692693390848, 8.526375426598392, 8.51749661965542, 8.511746707185152, 8.505873497285439, 8.502188711139215, 8.498577314800462, 8.508171635767035, 8.51240274497689, 8.51268127220394, 8.513066467027587, 8.513147196456336, 8.51330676787219, 8.51333975186311, 8.513309622679941, 8.513271864502718, 8.513179802476204, 8.513053293354337, 8.512976343854755, 8.512879541419004, 8.512736459798573, 8.512585320158458, 8.512479335212994, 8.512368616438549, 8.51221365164876, 8.512100863459, 8.511945123163807, 8.511788585225982, 8.511675354470622, 8.511562300926158, 8.511406176388558, 8.511293878056978, 8.51113849112078, 8.510983961338123, 8.510872786157245, 8.510762673267795, 8.510609350102476, 8.510500495370753, 8.510348348536798, 8.510197282012447, 8.510089844293049, 8.50998363953294, 8.509833919466741, 8.509684919497793, 8.50957906392885, 8.509473791969517, 8.509324876533412, 8.509177299408355, 8.509073699672468, 8.508971482111562, 8.50882538594379, 8.508724618442598, 8.508579863874996, 8.508436347674541, 8.508337110141595, 8.50823917191, 8.508097198214893, 8.508000663079459, 8.507859951046411, 8.507722073075023, 8.50762695885631, 8.50753313586045, 8.507396231724629, 8.50726056893209, 8.507168375863111, 8.507079075473575, 8.50694652114887, 8.506816367407637, 8.506729985980735, 8.506645700438396, 8.506517612730034, 8.506392400782465, 8.506311143864663, 8.506233680777003, 8.506112131821906, 8.505992960347614, 8.505918419182077, 8.506833283298851, 8.507710576238832, 8.508500750309818, 8.509138678705813, 8.509537199803015, 8.510050937029217, 8.51029307220118, 8.510626218115572, 8.509761315921745, 8.508928723323603, 8.508299750735432, 8.507623899675117, 8.507196983670717, 8.50675427288869, 8.506457281942202, 8.506156123034629, 8.50702466775157, 8.507857867123745, 8.508304995122192, 8.508869052254632, 8.509162922995978, 8.509549893792695, 8.509815136426603, 8.510003744667596, 8.509883288456754, 8.509093500059759, 8.508324022887638, 8.50759884144144, 8.507566899576789, 8.507491753162254, 8.50741752909783, 8.507386633116296, 8.507356687282003, 8.50728343759429, 8.507210882069742, 8.507182054879651, 8.50598498303588, 8.505984057174047, 8.505892312026365, 8.505802077304278, 8.505713281132644, 8.5056263398459, 8.505542866772032, 8.505462326911626, 8.505383942698636, 8.505716463062882, 8.506340966038765, 8.506965377840013, 8.507589694527068, 8.50821392004077, 8.50883805009338, 8.509462086286186, 8.510086027751738, 8.510709878048035, 8.511333633703375, 8.511957298190593, 8.51258086812315, 8.513204346888692, 8.513827731185838, 8.514451024317044, 8.515074223066007, 8.515629281930412, 8.51598883684848, 8.516348370468151, 8.51670767227796, 8.517065814398407, 8.517423932316353, 8.517782028848352, 8.518140101384777, 8.518498152535456, 8.518856179814682, 8.519214185708346, 8.519572167815184, 8.519602774056743, 8.519582363701277, 8.519566816957518, 8.519556256573372, 8.519548272211082, 8.5195428533806, 8.519539399699203, 8.514237931858263, 8.518407820738329, 8.51823559945961, 8.518138082723803, 8.517967537031335, 8.517871816891441, 8.51777772795396, 8.517608930344602, 8.517442075692493, 8.51734941064598, 8.517259639174695, 8.51709554686872, 8.516933250830098, 8.51684565970157, 8.51675961346884, 8.516599032847667, 8.51651473510965, 8.516355955970841, 8.516274964911558, 8.516119352070321, 8.516041163302475, 8.515888299605072, 8.515736915654587, 8.515660307581905, 8.515585031205001, 8.515435333311801, 8.515361441969478, 8.515213334334438, 8.515065631136649, 8.514991816868863, 8.514845610344603, 8.514773100570206, 8.514701753349739, 8.514557241260995, 8.514487196416143, 8.514344192726309, 8.514275459832833, 8.514134108298466, 8.513994267149148, 8.513926736381077, 8.513860134831926, 8.513722041370533, 8.513585703827909, 8.513520148897074, 8.513458709758126, 8.513327447278465, 8.513199177200821, 8.51314083493679, 8.513083999274242, 8.512957099626238, 8.512831420809567, 8.512776273963595, 8.512651894164787, 8.512598353592443, 8.512546279765802, 8.512423353584554, 8.512372970052256, 8.512251408137018, 8.512130914021869, 8.51208204408994, 8.51203496038647, 8.511916061528554, 8.511871124040885, 8.511753980764922, 8.511638013312382, 8.511594739177454, 8.511552967259496, 8.511438335836713, 8.511326244849718, 8.511287498695125, 8.511177567590394, 8.511141418249947, 8.511106762299894, 8.510997304394088, 8.510888612686694, 8.510854432037506, 8.51082177852164, 8.510714302906292, 8.510608019669908, 8.510577100274228, 8.5105476857167, 8.510442721175929, 8.510338928684725, 8.510311094361574, 8.510208845626883, 8.510182476816128, 8.510157580362634, 8.510056619872596, 8.510033277791461, 8.509933472500457, 8.509834732712388, 8.50981301037641, 8.509792753362923, 8.509695219319742, 8.50967647410004, 8.509580089756703, 8.509484784214344, 8.509467608364227, 8.509451885358379, 8.509357750221602, 8.509264667970559, 8.509250604992797, 8.509238030957977, 8.509146124245332, 8.509055200515213, 8.50904420638396, 8.508954325121499, 8.508944830995226, 8.508856014910663, 8.508847982212092, 8.508841338262288, 8.508753635843222, 8.50866755242616, 8.508663233995085, 8.50866339243973, 8.508581124265179, 8.508582723548944, 8.508501392471262, 8.508504452457116, 8.508423331891798, 8.508344549642034, 8.50835008800673, 8.508356973719765, 8.50827912876839, 8.508202125588618, 8.50821053402822, 8.50822018180604, 8.50814401748447, 8.508068920087764, 8.508080169219534, 8.508092737388335, 8.50801862740482, 8.507945189635652, 8.507959174731468, 8.5079744072878, 8.507901733991527, 8.507829740661414, 8.507846263160275, 8.507863986529294, 8.50779270696888, 8.507721953498505, 8.50774101119508, 8.507670814946929, 8.50769111946627]}, "gravity": [9.80665, 9.805883752572774, 9.803585130033337, 9.799754491589697, 9.794392435859498, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.792219154502513, 9.791183966138172, 9.79011295257601, 9.782983508369435, 9.774432736741135, 9.764568337318183, 9.753391635819384, 9.74090413432942, 9.727107511096996, 9.712003620309279, 9.69559449184271, 9.677882330990203, 9.658869518164764, 9.63855860857957, 9.616952331904582, 9.594053591899671, 9.569865466024384, 9.544391205024347, 9.517634232494379, 9.489598144418387, 9.460286708686082, 9.429703864586601, 9.397853722279084, 9.364740562240293, 9.330368834689342, 9.294743158989611, 9.257868323027933, 9.219749282571133, 9.180391160599989, 9.139799246620738, 9.09797899595421, 9.05493602900264, 9.01067613049434, 8.965205248706251, 8.918529494664533, 8.870655141323281, 8.821429163745865, 8.770983286763645, 8.71934981474775, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653], "volume": {"diff": 0.7962747764372011, "final": 167.73099042667292, "start": 166.93471565023572}, "strain": {"m_ds": [2072, 2085.37, 2098.7400000000002, 2112.11, 2112.31, 2130.84, 2149.37, 2167.9, 2168.1, 2188.0091176470587, 2207.9182352941175, 2227.8273529411763, 2247.736470588235, 2267.645588235294, 2287.554705882353, 2307.463823529412, 2327.3729411764707, 2347.2820588235295, 2367.1911764705883, 2387.100294117647, 2407.009411764706, 2426.9185294117647, 2446.8276470588235, 2466.7367647058823, 2486.645882352941, 2506.5550000000003, 2526.4641176470586, 2546.373235294118, 2566.2823529411767, 2586.1914705882355, 2606.1005882352943, 2626.009705882353, 2645.918823529412, 2665.8279411764706, 2685.7370588235294, 2705.646176470588, 2725.5552941176475, 2745.464411764706, 2765.373529411765, 2785.282647058824, 2805.1917647058826, 2825.1008823529414, 2845.01, 2845.21, 2863.9433333333336, 2882.6766666666667, 2901.4100000000003, 2901.61, 2917.8433333333332, 2934.076666666667, 2950.31, 2950.5099999999998, 2967.0066666666667, 2983.503333333333, 3000, 3005.21, 3005.41, 3022.0325, 3038.6549999999997, 3055.2775, 3071.9, 3072.1, 3091.995238095238, 3111.890476190476, 3131.785714285714, 3151.6809523809525, 3171.5761904761903, 3191.4714285714285, 3211.366666666667, 3231.2619047619046, 3251.157142857143, 3271.052380952381, 3290.947619047619, 3310.842857142857, 3330.7380952380954, 3350.633333333333, 3370.5285714285715, 3390.4238095238097, 3410.3190476190475, 3430.214285714286, 3450.109523809524, 3470.004761904762, 3489.9, 3490.1, 3510.0267605633803, 3529.9535211267603, 3549.8802816901407, 3569.807042253521, 3589.7338028169015, 3609.6605633802815, 3629.587323943662, 3649.5140845070423, 3669.4408450704223, 3689.3676056338027, 3709.294366197183, 3729.221126760563, 3749.1478873239435, 3769.074647887324, 3789.001408450704, 3808.9281690140842, 3828.8549295774646, 3848.781690140845, 3868.708450704225, 3888.6352112676054, 3908.561971830986, 3928.488732394366, 3948.415492957746, 3968.3422535211266, 3988.269014084507, 4008.195774647887, 4028.1225352112674, 4048.049295774648, 4067.976056338028, 4087.902816901408, 4107.829577464789, 4127.756338028169, 4147.683098591549, 4167.609859154929, 4187.536619718309, 4207.46338028169, 4227.39014084507, 4247.316901408451, 4267.243661971831, 4287.170422535211, 4307.097183098591, 4327.023943661971, 4346.950704225352, 4366.877464788732, 4386.804225352113, 4406.730985915493, 4426.657746478873, 4446.584507042253, 4466.511267605633, 4486.438028169014, 4506.364788732394, 4526.2915492957745, 4546.218309859155, 4566.145070422535, 4586.071830985915, 4605.998591549295, 4625.925352112676, 4645.852112676056, 4665.7788732394365, 4685.705633802816, 4705.632394366197, 4725.559154929577, 4745.485915492957, 4765.412676056338, 4785.339436619718, 4805.2661971830985, 4825.192957746478, 4845.119718309859, 4865.046478873239, 4884.973239436619, 4904.9], "outer": [0.0021224701340153787, 0.0021653825719695156, 0.002198401251096789, 0.002223564712850257, 0.0022257268767968547, 0.002259956776099854, 0.002280668868130827, 0.0022921269224717767, 0.0009240704158766638, 0.000922021195724142, 0.000920296066870709, 0.0009187530663604133, 0.0009173122251755479, 0.0009159284836817777, 0.000914573380416548, 0.0009132322786152148, 0.0009118985689142269, 0.0009105671485907527, 0.0009092377940359821, 0.0009079088949564283, 0.0009065797450986507, 0.00090524997208268, 0.000903919355511075, 0.0009025877691533141, 0.0009012551927542256, 0.0008999215405176082, 0.0008985874918296516, 0.0008972522136234493, 0.0008959155237814373, 0.000894577534701246, 0.0008932383007427475, 0.000891897820255239, 0.000890555945475346, 0.0008892129520164599, 0.0008878662096413656, 0.0008865189579399884, 0.0008851704920334055, 0.0008838183069422649, 0.0008824629583413497, 0.0008811053305730981, 0.0008797440509521835, 0.0008783779692876792, 0.0008770087587907116, 0.0008756133304176929, 0.0008730946783289251, 0.0008709715104956526, 0.0008691068942495219, 0.0008703997878887721, 0.0008701634045554559, 0.0008695945630376524, 0.0008688173647454455, 0.000867490048179768, 0.0008654623003688753, 0.0008636880527326127, 0.0008620881488915575, 0.0008624399752729726, 0.0008635746976220678, 0.0008623951445791529, 0.0008612146291283645, 0.0008600332683758725, 0.0008588513070011332, 0.0008567664019435628, 0.0008553617799640018, 0.0008539559818107581, 0.0008525489130587436, 0.0008511408835061172, 0.0008497317008834114, 0.0008483203678918094, 0.0008469033881975419, 0.0008454850529108348, 0.0008440647497217952, 0.0008426433204953178, 0.0008412207659340487, 0.0008397970868280769, 0.0008383722840978492, 0.0008369449225134258, 0.0008355090415030185, 0.0008340722860126209, 0.0008326343712656249, 0.0008311939800427065, 0.000829752512929086, 0.0008283099684587332, 0.0008268663428828777, 0.0003470270492379622, 0.0003470239145299268, 0.0003470210455138496, 0.00034701844254391464, 0.00034701610656979147, 0.00034701403917459996, 0.00034701224160781725, 0.00034701071332872565, 0.00034700945311924754, 0.0003470084595549489, 0.0003470077310678157, 0.00034700726482980433, 0.00034700705738747794, 0.0003470071047319752, 0.0003470074021256661, 0.00034700794428771007, 0.0003470087256283781, 0.00034700974007625105, 0.00034701098101267124, 0.0003470124413590307, 0.00034701411362640227, 0.0003470159898767201, 0.0003470180619758673, 0.0003470203354358314, 0.00034702282273097737, 0.0003470255243114494, 0.000347028440420591, 0.000347031571290303, 0.0003470349171236353, 0.00034703847816947443, 0.00034704225478329894, 0.00034704624740494034, 0.0003470504563803954, 0.00034705488194446783, 0.00034705952440841517, 0.0003470643844581136, 0.0003470694623493191, 0.00034707475809116347, 0.00034708027187905284, 0.00034708600392424356, 0.0003470919543806197, 0.0003470981234549189, 0.00034710451136623553, 0.00034711111833881085, 0.00034711794459702975, 0.00034712499036228386, 0.0003471322558541777, 0.00034713974129006194, 0.00034714744687075884, 0.00034715537280728307, 0.0003471635192997949, 0.00034717188648945125, 0.0003471804745807445, 0.000347189283783614, 0.0003471983144638466, 0.0003472075669607252, 0.0003472170415049218, 0.000347226738885647, 0.0003472366596045014, 0.0003472468038334107, 0.0003472571718134517, 0.00034726776391560065, 0.00034727858027012754, 0.00034728962105096914, 0.0003473008864631471, 0.0003473123766683761, 0.0003473240918268293, 0.00034733603209234686, 0.00034734819759994306, 0.0003473605884724568, 0.00034737320484432406, 0.0003473860468443973], "inner": [-0.0009721774352788048, -0.0009070466293905798, -0.0008579270354595303, -0.0008214876622887222, -0.0008181725384677771, -0.0007669425834607134, -0.0007392089289907523, -0.0007264235354760393, -0.0007554751625564661, -0.0007714414608404872, -0.0007858642505108556, -0.0007994205000274462, -0.0008124913946879304, -0.0008252918344001407, -0.0008379553555990286, -0.0008505535208345421, -0.000863118202197472, -0.0008756669127636652, -0.0008882100565439633, -0.0009007533383738487, -0.0009132999833993123, -0.0009258517819289757, -0.0009384097929301706, -0.0009509746307197573, -0.0009635466599755059, -0.0009761260842660058, -0.0009887095784776299, -0.0010013010923534081, -0.0010139015426766415, -0.0010265103970012956, -0.0010391274010144915, -0.0010517523893414356, -0.001064385223512546, -0.0010770259021963568, -0.0010896738648026338, -0.0011023296291001203, -0.0011149941073852118, -0.0011276774193167652, -0.0011403783479545563, -0.001153092637363145, -0.0011658253303522767, -0.0011785830999638488, -0.0011913585774016274, -0.0011978003590536071, -0.0012157546698582252, -0.0012318030603454945, -0.0012466050523362888, -0.0012407703126980471, -0.0012469375576020466, -0.0012547151579490059, -0.001263502143510873, -0.0012696328856017284, -0.0012845416796549733, -0.001298227212522594, -0.0013110713673729507, -0.001307684796126311, -0.0013024364310693674, -0.001307922788000228, -0.0013134150538029149, -0.0013189134422172803, -0.0013244182519418475, -0.0005250573024800643, -0.0005316017462733153, -0.0005381549979591153, -0.000544717627217588, -0.00055128986126583, -0.0005578708751244789, -0.0005644645178199939, -0.0005710874794223685, -0.0005777190282361437, -0.0005843587732827065, -0.0005910072858222625, -0.000597664575739858, -0.0006043306525016363, -0.0006110055252258074, -0.0006176950743474114, -0.0006244277450191087, -0.0006311680344064588, -0.0006379173268568869, -0.0006446819501083895, -0.0006514552593880566, -0.0006582372767620862, -0.0006650280363515197, -0.0006943199483855144, -0.0007004576432794169, -0.0007066064727204691, -0.00071276587915983, -0.0007189318118868602, -0.0007251115030458795, -0.0007312914730294263, -0.0007374651422596793, -0.0007436295567483856, -0.0007497920499793706, -0.0007559454888771503, -0.0007620769971255412, -0.0007681826974082378, -0.0007742587062110223, -0.0007803006992122557, -0.0007863053634093581, -0.0007922689002118805, -0.0007981881674799986, -0.0008040598195289438, -0.0008098790656636296, -0.0008156419079821926, -0.00082134460909857, -0.0008270065263663999, -0.000832649305734955, -0.0008383022315508063, -0.0008439653854132708, -0.0008496387693711619, -0.0008553219766939005, -0.0008610160169357793, -0.0008667190816771062, -0.0008724342369134828, -0.0008781634654620488, -0.0008839028052465695, -0.0008896522443941359, -0.0008954214424518729, -0.000901207936613192, -0.0009070044817976644, -0.0009128111678792196, -0.000918628148658514, -0.0009244558019563262, -0.0009302936001515166, -0.000936141016389294, -0.000941997768239482, -0.0009478644449816636, -0.0009537410960266852, -0.0009596276583999341, -0.0009655241079645595, -0.0009714302475218557, -0.000977345964513497, -0.0009832714911045708, -0.0009892072537076822, -0.000995153089546562, -0.0010011086085129437, -0.0010070737697766006, -0.001013048305533902, -0.0010190322187558433, -0.0010250311452398551, -0.0010310614041744342, -0.0010371009221060634, -0.001043149845436634, -0.0010492232984867097, -0.0010553058595722947, -0.0010613977909941018, -0.0010674980683221303, -0.0010736083051261398, -0.0010797274606721807, -0.0010858552601180872, -0.001091991475520308, -0.0010981354425203236, -0.0011042874989007872, -0.001110447634283523, -0.0011166157118865292]}, "leakage_bbl": {"60.0": 0}, "radius outer": {"start": [8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 8.125, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375, 7.375], "final": [8.142245069838877, 8.142419401618064, 8.142593733397252, 8.142727871781206, 8.142862010165162, 8.142964236728536, 8.143066463291909, 8.143075247082942, 8.143084030873975, 8.143223089839893, 8.143362148805812, 8.143446291679687, 8.143530434553563, 8.143576982899324, 8.143623531245083, 8.138065801687041, 8.132508072129, 8.13249974717213, 8.13249142221526, 8.132484413879292, 8.132477405543325, 8.132471137103751, 8.132464868664178, 8.132459015246864, 8.13245316182955, 8.132447540379733, 8.132441918929914, 8.1324364138229, 8.132430908715886, 8.132425460489817, 8.132420012263749, 8.132414594068088, 8.132409175872429, 8.132403766977363, 8.1323983580823, 8.132392957579421, 8.132387557076543, 8.132382158424031, 8.132376759771521, 8.132371360100224, 8.132365960428926, 8.13236055822605, 8.132355156023173, 8.13234975039335, 8.132344344763528, 8.13233893519395, 8.132333525624372, 8.13232811203275, 8.13232269844113, 8.132317280478917, 8.132311862516707, 8.13230644294391, 8.132301023371117, 8.132295598803404, 8.132290174235692, 8.132284743933209, 8.132279313630725, 8.132273878050087, 8.13226844246945, 8.132263001831491, 8.132257561193535, 8.132252115491555, 8.132246669789573, 8.13224121842328, 8.132235767056986, 8.13223031114606, 8.132224855235133, 8.132219384094235, 8.132213912953336, 8.1322084397433, 8.132202966533262, 8.132197488390517, 8.132192010247772, 8.132186516995839, 8.132181023743906, 8.132175517640214, 8.132170011536523, 8.132164496173713, 8.132158980810907, 8.132153450612448, 8.132147920413988, 8.132142370707225, 8.132136821000461, 8.132131258582818, 8.132125696165176, 8.13212002723741, 8.132114358309645, 8.132104126285533, 8.132093894261423, 8.1320852688921, 8.132076643522778, 8.132069068519279, 8.132061493515778, 8.132066745896187, 8.132071998276597, 8.132071037969304, 8.132070077662013, 8.132067766743347, 8.132065455824682, 8.132062298456619, 8.132059141088558, 8.13205374886501, 8.13204835664146, 8.13204011891598, 8.132031881190496, 8.132024673309475, 8.132017465428454, 8.132010965819099, 8.132004466209745, 8.132005895504419, 8.132007324799094, 8.132011934608636, 8.132016544418178, 8.132011752483942, 8.132006960549706, 8.132002164705687, 8.13199736886167, 8.131992569583613, 8.131987770305555, 8.13198296858747, 8.131978166869384, 8.131969696942589, 8.131961227015793, 8.131955520739, 8.131949814462208, 8.13194410340721, 8.131938392352215, 8.131932676135408, 8.131926959918601, 8.131921239798544, 8.131915519678488, 8.131909794874083, 8.131904070069677, 8.1318983365294, 8.13189260298912, 8.131886846509113, 8.131881090029106, 8.131875328042003, 8.1318695660549, 8.131863796073196, 8.131858026091491, 8.131852251535257, 8.131846476979025, 8.13184069785112, 8.131834918723214, 8.131829135026848, 8.131823351330478, 8.131817563069387, 8.131811774808297, 8.13180597615186, 8.131800177495423, 8.131794344228819, 8.131788510962213, 8.131782674143032, 8.131776837323851, 8.131770995795192, 8.131765154266533, 8.13175930267719, 8.131753451087848, 8.131747595127699, 8.131741739167548, 8.131735878830638, 8.131730018493728, 8.131724153764827, 8.131718289035925, 7.754638806762028, 7.377559324488131, 7.377559312928896, 7.377559301369659, 7.3775592907901615, 7.377559280210664, 7.377559270612212, 7.3775592610137615, 7.377559252399856, 7.377559243785952, 7.3775592361624325, 7.377559228538913, 7.377559221910385, 7.377559215281858, 7.377559209646329, 7.3775592040108, 7.377559199363778, 7.3775591947167545, 7.3775591910529865, 7.377559187389218, 7.377559184702921, 7.3775591820166255, 7.3775591802973715, 7.377559178578119, 7.3775591778131755, 7.377559177048232, 7.377559177222815, 7.377559177397398, 7.377559178494037, 7.377559179590676, 7.377559181589899, 7.377559183589121, 7.377559186470315, 7.377559189351509, 7.377559193092286, 7.377559196833062, 7.3775592014090146, 7.3775592059849675, 7.377559211369994, 7.377559216755022, 7.377559222921509, 7.3775592290879946, 7.377559236006667, 7.37755924292534, 7.377559250566206, 7.3775592582070715, 7.377559266590455, 7.37755927497384, 7.3775592841457405, 7.377559293317641, 7.377559303279718, 7.377559313241797, 7.37755932399495, 7.377559334748102, 7.377559346293185, 7.377559357838266, 7.3775593701760265, 7.3775593825137875, 7.377559395645144, 7.3775594087764995, 7.377559422702763, 7.377559436629027, 7.377559451351819, 7.3775594660746115, 7.377559481595209, 7.377559497115807, 7.377559513435073, 7.37755952975434, 7.377559546873426, 7.377559563992512, 7.377559581913945, 7.3775595998353785, 7.3775596185601025, 7.3775596372848256, 7.377559656812874, 7.377559676340923, 7.377559696673016, 7.377559717005108, 7.377559738142025, 7.377559759278942, 7.377559781221249, 7.377559803163558, 7.3775598259120185, 7.37755984866048, 7.377559872215903, 7.377559895771327, 7.377559920134538, 7.377559944497749, 7.3775599696695755, 7.377559994841403, 7.3775600208226635, 7.377560046803922, 7.377560073595423, 7.3775601003869244, 7.37756012798947, 7.377560155592013, 7.3775601840063425, 7.377560212420673, 7.377560241647563, 7.377560270874454, 7.377560300914645, 7.377560330954836, 7.377560361808847, 7.377560392662859, 7.377560424331445, 7.377560456000033, 7.377560488483969, 7.377560520967904, 7.3775605542685385, 7.377560587569171, 7.377560621687754, 7.377560655806336, 7.377560690743717, 7.377560725681098, 7.37756076144019, 7.377560797199281, 7.377560833781931, 7.377560870364583, 7.377560907771428, 7.3775609451782715, 7.377560983410198, 7.377561021642125, 7.3775610607005015, 7.377561099758878, 7.377561139644183, 7.377561179529491, 7.37756122024237, 7.377561260955251, 7.377561302496458, 7.377561344037665, 7.377561386407797, 7.377561428777929, 7.377561471977576, 7.377561515177223, 7.377561559206952, 7.37756160323668, 7.37756164809699, 7.3775616929573, 7.377561738648642, 7.377561784339984, 7.377561830862855, 7.377561877385726, 7.3775619247406015, 7.377561972095477]}, "leakage_mass": {"60.0": 0}, "pressure": {"apb": 8159.181342880433, "diff": [8159.181342880433, 8159.049624078649, 8158.917905276869, 8158.76628030877, 8158.6146553406725, 8158.447837550577, 8158.2810197604795, 8158.278417279998, 8158.275814799519, 8158.019243361758, 8157.762671923995, 8157.485800520965, 8157.208929117939, 8156.920566898937, 8156.632204679936, 8156.629248225061, 8156.626291770186, 8156.338394837694, 8156.050497905202, 8155.766998817528, 8155.483499729851, 8155.203852770594, 8154.924205811341, 8154.648104498796, 8154.372003186252, 8154.09927592663, 8153.826548667007, 8153.557102364283, 8153.287656061562, 8153.0214457911225, 8152.75523552068, 8152.49223827614, 8152.229241031598, 8151.969444913459, 8151.7096487953195, 8151.453048867264, 8151.19644893921, 8150.943044043174, 8150.689639147137, 8150.439429285946, 8150.189219424752, 8149.942205705085, 8149.69519198542, 8149.451378222214, 8149.2075644590095, 8148.966955808683, 8148.726347158359, 8148.488946161339, 8148.251545164321, 8148.017354418322, 8147.783163672326, 8147.552184926462, 8147.321206180601, 8147.09343789908, 8146.8656696175585, 8146.641113663927, 8146.416557710296, 8146.195217172663, 8145.973876635032, 8145.755754452228, 8145.537632269425, 8145.322731234888, 8145.107830200348, 8144.896152565607, 8144.684474930866, 8144.476023212302, 8144.267571493737, 8144.0623484471225, 8143.857125400509, 8143.655134572184, 8143.453143743858, 8143.254389553935, 8143.055635364015, 8142.8601235191745, 8142.664611674336, 8142.472350449294, 8142.28008922425, 8142.0910846844, 8141.902080144553, 8141.716338146435, 8141.5305961483145, 8141.348127257338, 8141.165658366361, 8140.986472661623, 8140.807286956884, 8140.805528982907, 8140.803771008933, 8140.642438563079, 8140.481106117226, 8140.324811402491, 8140.168516687758, 8140.016588598615, 8139.864660509475, 8139.863036266382, 8139.8614120232905, 8139.729425596931, 8139.597439170571, 8139.466375799629, 8139.335312428685, 8139.205649768573, 8139.07598710846, 8139.074423894745, 8139.072860681032, 8138.94633882233, 8138.819816963634, 8138.696944483507, 8138.574072003379, 8138.454461183506, 8138.334850363634, 8138.297774391321, 8138.260698419006, 8138.2592614970235, 8138.257824575044, 8138.139269916728, 8138.020715258411, 8137.904519361694, 8137.788323464975, 8137.674487709291, 8137.560651953607, 8137.449178200855, 8137.337704448104, 8137.336409354895, 8137.335114261688, 8137.208615418072, 8137.082116574456, 8136.958986103657, 8136.835855632854, 8136.716095801399, 8136.596335969944, 8136.47994846654, 8136.3635609631365, 8136.250548729729, 8136.1375364963205, 8136.027902226831, 8135.91826795734, 8135.812020849516, 8135.70577374169, 8135.602920417257, 8135.500067092823, 8135.400611346576, 8135.301155600331, 8135.205103310571, 8135.109051020809, 8135.016404863382, 8134.923758705954, 8134.834521123984, 8134.745283542015, 8134.659456977366, 8134.573630412717, 8134.491216968778, 8134.40880352484, 8134.3298128997285, 8134.250822274622, 8134.175263307947, 8134.099704341268, 8134.027581562398, 8133.95545878353, 8133.8867746755595, 8133.818090567592, 8133.752847472823, 8133.687604378058, 8133.625804655665, 8133.564004933272, 8133.505650969566, 8133.447297005862, 8133.4468817603, 8133.44646651474, 8133.40973165495, 8133.3729967951585, 8133.3393755130055, 8133.30575423085, 8133.275250676924, 8133.244747122999, 8133.217372426243, 8133.189997729488, 8133.165770442087, 8133.141543154687, 8133.120477918953, 8133.0994126832165, 8133.081503162612, 8133.063593642008, 8133.048825562187, 8133.034057482365, 8133.02241415074, 8133.010770819114, 8133.002233860524, 8132.99369690193, 8132.988233175235, 8132.982769448539, 8132.980338483778, 8132.977907519015, 8132.9784623373425, 8132.979017155669, 8132.982502237985, 8132.9859873202995, 8132.992340781753, 8132.998694243205, 8133.007850579161, 8133.017006915113, 8133.0288949761225, 8133.040783037134, 8133.055325260809, 8133.069867484482, 8133.086980918383, 8133.104094352282, 8133.123691235544, 8133.143288118803, 8133.165275427215, 8133.187262735627, 8133.211545147509, 8133.23582755939, 8133.262469668343, 8133.2891117773, 8133.31825976729, 8133.347407757283, 8133.379066903439, 8133.410726049595, 8133.444899203598, 8133.479072357602, 8133.515762237039, 8133.552452116476, 8133.591661100841, 8133.630870085203, 8133.67260109113, 8133.714332097056, 8133.758589290314, 8133.802846483569, 8133.84963501843, 8133.896423553289, 8133.945747484403, 8133.995071415517, 8134.04693349449, 8134.0987955734645, 8134.153199447847, 8134.207603322231, 8134.2645570296345, 8134.321510737037, 8134.381017274601, 8134.440523812166, 8134.502583286904, 8134.564642761644, 8134.629257463473, 8134.693872165301, 8134.76104456988, 8134.828216974459, 8134.897948885117, 8134.967680795774, 8135.039974635218, 8135.112268474661, 8135.187126810404, 8135.261985146145, 8135.339410606013, 8135.41683606588, 8135.496831279383, 8135.576826492886, 8135.659394054458, 8135.74196161603, 8135.827104099158, 8135.912246582289, 8135.999966534057, 8136.087686485827, 8136.177986259619, 8136.268286033411, 8136.361168102054, 8136.454050170697, 8136.549516879821, 8136.644983588943, 8136.7430365927285, 8136.841089596514, 8136.941731291355, 8137.0423729862, 8137.145605832326, 8137.248838678453, 8137.354666962429, 8137.460495246404, 8137.5689229442005, 8137.677350641997, 8137.788380456802, 8137.899410271604, 8138.013051451978, 8138.126692632351, 8138.242951056427, 8138.359209480502, 8138.478087163033, 8138.596964845563, 8138.7184646116675, 8138.839964377775, 8138.964090574831, 8139.088216771891, 8139.214970926502, 8139.341725081115, 8139.471109231604, 8139.60049338209, 8139.732509931051, 8139.8645264800125, 8139.999177322539, 8140.133828165063, 8140.271115178186, 8140.408402191313, 8140.548327177845, 8140.68825216438, 8140.830816706523, 8140.973381248666, 8141.118586785936, 8141.263792323207, 8141.411640431026, 8141.5594885388455, 8141.709980727204, 8141.860472915561], "final": [11196.165356242398, 11205.937235565521, 11215.709114888647, 11225.45323616738, 11235.197357446112, 11244.918475296794, 11254.639593147473, 11254.784887381118, 11254.930181614764, 11268.374631708979, 11281.819081803194, 11295.24004924201, 11308.661016680828, 11322.067312123168, 11335.47360756551, 11335.618444423339, 11335.763281281168, 11350.185703208615, 11364.608125136063, 11379.031276266753, 11393.45442739744, 11407.877763914, 11422.301100430566, 11436.72431774788, 11451.147535065193, 11465.57046345672, 11479.993391848246, 11494.415940100427, 11508.83848835261, 11523.26061343719, 11537.682738521768, 11552.104419328045, 11566.526100134322, 11580.947326657808, 11595.368553181293, 11609.789322369314, 11624.210091557336, 11638.630404112084, 11653.05071666683, 11667.47057448163, 11681.890432296426, 11696.309838370309, 11710.729244444192, 11725.148202415952, 11739.567160387714, 11753.985674272053, 11768.404188156392, 11782.822262259437, 11797.240336362485, 11811.65797516353, 11826.075613964578, 11840.4928211121, 11854.910028259625, 11869.32680411652, 11883.743579973414, 11898.159928301242, 11912.57627662907, 11926.9922024066, 11941.408128184132, 11955.823636210464, 11970.239144236797, 11984.654239198097, 11999.069334159394, 12013.484020202553, 12027.89870624571, 12042.312987781797, 12056.727269317884, 12071.141150996522, 12085.55503267516, 12099.96851991223, 12114.382007149301, 12128.79510623532, 12143.208205321343, 12157.620923855036, 12172.03364238873, 12186.44599053619, 12200.858338683647, 12215.270324400974, 12229.682310118302, 12244.093941148454, 12258.505572178605, 12272.91686093882, 12287.328149699033, 12301.739107089621, 12316.150064480207, 12316.29485560822, 12316.439646736233, 12330.00346229433, 12343.567277852428, 12357.13293061707, 12370.698583381713, 12384.26540382778, 12397.832224273847, 12397.977046285438, 12398.12186829703, 12409.875221129712, 12421.628573962396, 12433.380449943294, 12445.13232592419, 12456.883203734653, 12468.634081545115, 12468.778875537986, 12468.923669530857, 12480.867924964125, 12492.812180397395, 12504.757610019937, 12516.703039642478, 12528.649256813274, 12540.595473984073, 12544.368530531328, 12548.141587078584, 12548.286407525618, 12548.431227972655, 12560.4672187013, 12572.503209429946, 12584.539049449255, 12596.574889468562, 12608.610581251347, 12620.646273034132, 12632.681819543057, 12644.717366051982, 12644.862207242884, 12645.007048433788, 12659.41581760818, 12673.824586782572, 12688.233136046618, 12702.641685310662, 12717.050018814723, 12731.458352318785, 12745.866473606808, 12760.27459489483, 12774.68250877856, 12789.09042266229, 12803.498133719222, 12817.905844776153, 12832.313364086947, 12846.72088339774, 12861.128219466373, 12875.535555535003, 12889.942712689293, 12904.349869843587, 12918.756852415698, 12933.163834987807, 12947.570647312354, 12961.977459636899, 12976.384106046815, 12990.790752456733, 13005.197237283028, 13019.603722109323, 13034.010049343027, 13048.416376576732, 13062.82255777766, 13077.228738978592, 13091.634784855021, 13106.040830731446, 13120.446747699287, 13134.852664667129, 13149.258457095359, 13163.66424952359, 13178.069921639733, 13192.475593755878, 13206.881149797755, 13221.286705839631, 13235.692150041361, 13250.097594243094, 13250.242560541103, 13250.387526839113, 13264.833906951355, 13279.280287063595, 13293.726215668696, 13308.172144273793, 13322.61738327584, 13337.062622277886, 13351.50467005271, 13365.946717827532, 13380.375899734436, 13394.80508164134, 13409.206705190334, 13423.608328739327, 13437.974633028572, 13452.340937317818, 13466.664205798512, 13480.987474279204, 13495.260015280317, 13509.532556281429, 13523.746712930004, 13537.960869578577, 13552.109009870042, 13566.257150161508, 13580.331677184187, 13594.406204206867, 13608.399560885422, 13622.392917563977, 13636.297588532392, 13650.202259500806, 13664.010777149824, 13677.819294798841, 13691.524245845123, 13705.229196891401, 13718.823224138214, 13732.41725138503, 13745.89305674801, 13759.368862110987, 13772.719211321799, 13786.06956053261, 13799.28728737808, 13812.505014223547, 13825.582984592651, 13838.660954961755, 13851.591707908814, 13864.522460855871, 13877.370957793844, 13890.21945473182, 13903.066438267382, 13915.913421802947, 13928.760122636659, 13941.606823470369, 13954.45324578327, 13967.299668096173, 13980.145815934806, 13992.991963773438, 14005.837840842943, 14018.683717912449, 14031.529328428247, 14044.374938944044, 14057.220288278628, 14070.065637613208, 14082.910729900195, 14095.75582218718, 14108.600661524115, 14121.44550086105, 14134.290091333143, 14147.134681805237, 14159.979028391728, 14172.82337497822, 14185.667487025738, 14198.511599073257, 14211.35548090113, 14224.199362729001, 14237.043015776231, 14249.886668823465, 14262.730096711555, 14275.573524599644, 14288.416731135423, 14301.259937671204, 14314.102925988642, 14326.945914306076, 14339.788688140017, 14352.631461973959, 14365.474025204832, 14378.316588435706, 14391.158945020907, 14404.001301606104, 14416.843455504297, 14429.685609402492, 14442.527564536866, 14455.369519671238, 14468.211279943622, 14481.05304021601, 14493.894609489982, 14506.736178763955, 14519.577560697824, 14532.418942631693, 14545.260141024199, 14558.101339416706, 14570.942357940223, 14583.783376463738, 14596.624218098785, 14609.465059733833, 14622.30572820274, 14635.14639667165, 14647.986895745233, 14660.827394818818, 14673.667728208356, 14686.508061597893, 14699.348232827011, 14712.18840405613, 14725.028417159387, 14737.868430262643, 14750.708295819559, 14763.548161376473, 14776.387886595734, 14789.227611814995, 14802.067200039612, 14814.906788264227, 14827.746243623935, 14840.585698983645, 14853.425027147085, 14866.264355310528, 14879.103559133262, 14891.942762955996, 14904.781845804897, 14917.620928653798, 14930.459894259613, 14943.298859865426, 14956.137711450461, 14968.976563035496, 14981.8153037845, 14994.654044533507, 15007.492677561373, 15020.331310589243, 15033.169838804735, 15046.008367020228, 15058.846793189015, 15071.685219357803, 15084.523546381062, 15097.361873404321, 15110.200104117392, 15123.038334830459], "start": [3036.984013361966, 3046.887611486872, 3056.7912096117784, 3066.686955858609, 3076.582702105439, 3086.4706377462167, 3096.3585733869936, 3096.5064701011192, 3096.6543668152444, 3110.3553883472214, 3124.0564098791992, 3137.754248721044, 3151.4520875628887, 3165.1467452242314, 3178.8414028855736, 3178.989196198278, 3179.1369895109824, 3193.8473083709214, 3208.5576272308604, 3223.264277449225, 3237.9709276675894, 3252.673911143407, 3267.3768946192254, 3282.0762132490836, 3296.775531878941, 3311.471187530089, 3326.1668431812386, 3340.858837736144, 3355.5508322910487, 3370.2391676460684, 3384.9275030010876, 3399.6121810519057, 3414.2968591027247, 3428.97788174435, 3443.658904385974, 3458.3362735020496, 3473.0136426181257, 3487.6873600689096, 3502.361077519693, 3517.031145195683, 3531.701212871674, 3546.3676326652235, 3561.0340524587714, 3575.6968241937384, 3590.3595959287054, 3605.0187184633696, 3619.6778409980325, 3634.3333160980974, 3648.9887911981637, 3663.6406207452087, 3678.292450292253, 3692.940636185638, 3707.5888220790234, 3722.2333662174397, 3736.877910355855, 3751.518814637315, 3766.1597189187737, 3780.7969852339365, 3795.4342515491, 3810.067881758236, 3824.701511967372, 3839.331507963209, 3853.9615039590467, 3868.5878676369466, 3883.2142313148456, 3897.8369645694956, 3912.459697824147, 3927.0788025493994, 3941.697907274651, 3956.313385340047, 3970.9288634054433, 3985.5407166813857, 4000.152569957328, 4014.7608003358614, 4029.369030714394, 4043.9736400868956, 4058.5782494593964, 4073.179239716573, 4087.7802299737486, 4102.377603002019, 4116.97497603029, 4131.568733681482, 4146.162491332672, 4160.752634427998, 4175.342777523323, 4175.489326625312, 4175.6358757273, 4189.3610237312505, 4203.086171735202, 4216.808119214579, 4230.530066693955, 4244.248815229164, 4257.967563764372, 4258.114010019056, 4258.26045627374, 4270.145795532781, 4282.031134791825, 4293.914074143665, 4305.797013495506, 4317.67755396608, 4329.558094436655, 4329.704451643241, 4329.850808849826, 4341.921586141794, 4353.992363433761, 4366.06066553643, 4378.128967639099, 4390.194795629768, 4402.260623620438, 4406.070756140008, 4409.880888659578, 4410.027146028595, 4410.173403397611, 4422.327948784572, 4434.482494171535, 4446.634530087561, 4458.786566003587, 4470.936093542056, 4483.085621080525, 4495.2326413422015, 4507.379661603878, 4507.525797887989, 4507.6719341721, 4522.207202190108, 4536.742470208115, 4551.274149942961, 4565.805829677808, 4580.333923013324, 4594.86201634884, 4609.386525140268, 4623.911033931694, 4638.431960048831, 4652.952886165969, 4667.470231492391, 4681.987576818813, 4696.501343237432, 4711.01510965605, 4725.525299049115, 4740.03548844218, 4754.542101342718, 4769.048714243256, 4783.551749105127, 4798.054783966998, 4812.554242448971, 4827.053700930945, 4841.549584922831, 4856.045468914717, 4870.537780305662, 4885.030091696606, 4899.5188323742495, 4914.007573051892, 4928.492744877931, 4942.977916703971, 4957.4595215470745, 4971.941126390178, 4986.419166136889, 5000.897205883599, 5015.371682419799, 5029.846158955998, 5044.31707416691, 5058.787989377821, 5073.25534514209, 5087.722700906359, 5102.186499071795, 5116.650297237232, 5116.7956787808025, 5116.941060324373, 5131.424175296405, 5145.907290268437, 5160.38684015569, 5174.866390042943, 5189.342132598916, 5203.817875154888, 5218.287297626466, 5232.756720098044, 5247.210129292349, 5261.663538486653, 5276.086227271381, 5290.50891605611, 5304.893129865961, 5319.277343675811, 5333.615380236325, 5347.953416796839, 5362.237601129577, 5376.521785462314, 5390.74447906948, 5404.967172676647, 5419.120776694807, 5433.274380712968, 5447.3513387004095, 5461.428296687852, 5475.4210985480795, 5489.413900408308, 5503.315086294408, 5517.216272180506, 5531.018436368071, 5544.820600555636, 5558.516395265962, 5572.212189976289, 5585.794329162091, 5599.376468347896, 5612.8377314872005, 5626.298994626505, 5639.632230403416, 5652.965466180327, 5666.163596142535, 5679.361726104744, 5692.417709165436, 5705.473692226128, 5718.380162761305, 5731.286633296481, 5744.108488125501, 5756.93034295452, 5769.748178500092, 5782.566014045664, 5795.38105573322, 5808.196097420774, 5821.008346579672, 5833.820595738572, 5846.630053697767, 5859.439511656962, 5872.246179742103, 5885.052847827245, 5897.856727337117, 5910.660606846987, 5923.461698988313, 5936.2627911296395, 5949.061094881766, 5961.859398633891, 5974.654914039712, 5987.450429445533, 6000.243157838653, 6013.035886231773, 6025.825828943881, 6038.615771655988, 6051.402929996103, 6064.1900883362205, 6076.974463626529, 6089.758838916835, 6102.540432489327, 6115.322026061821, 6128.100839248083, 6140.8796524343425, 6153.655686565543, 6166.431720696745, 6179.2049771035245, 6191.978233510302, 6204.7487135047995, 6217.519193499298, 6230.286898394428, 6243.054603289561, 6255.8195344148935, 6268.584465540224, 6281.346624224914, 6294.108782909606, 6306.868170482408, 6319.627558055208, 6332.384175844464, 6345.14079363372, 6357.894642955925, 6370.648492278127, 6383.3995744382055, 6396.150656598283, 6408.898972922145, 6421.647289246009, 6434.392841060402, 6447.138392874795, 6459.881181506056, 6472.623970137319, 6485.363996911386, 6498.10402368545, 6510.841289912907, 6523.578556140365, 6536.313061245927, 6549.047566351489, 6561.779309882811, 6574.511053414134, 6587.240036702585, 6599.969019991038, 6612.695244367581, 6625.421468744123, 6638.144935539307, 6650.868402334493, 6663.589112876579, 6676.309823418664, 6689.027779012267, 6701.74573460587, 6714.460936572254, 6727.176138538637, 6739.88858820676, 6752.601037874881, 6765.310736573293, 6778.020435271708, 6790.727384328562, 6803.434333385414, 6816.138534127922, 6828.842734870433, 6841.5441886063145, 6854.245642342194, 6866.944350383528, 6879.643058424863, 6892.339022098212, 6905.034985771562, 6917.72820640308, 6930.4214270345965, 6943.111905950036, 6955.802384865476, 6968.490123390187, 6981.177861914897]}, "salt_results": [], "radius inner": {"start": [5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.9375, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001, 5.375000000000001], "final": [5.931727696478031, 5.931921053558012, 5.932114410637993, 5.932260234432476, 5.932406058226959, 5.932514237616059, 5.9326224170051605, 5.932632258779004, 5.932642100552847, 5.932794189481774, 5.932946278410702, 5.933028612697409, 5.933110946984118, 5.933148903621115, 5.93318686025811, 5.9331006132402155, 5.933014366222321, 5.93296696627429, 5.932919566326259, 5.932876748669425, 5.932833931012591, 5.93279368589684, 5.932753440781087, 5.932714636562563, 5.93267583234404, 5.932637831038644, 5.932599829733249, 5.932562234904689, 5.93252464007613, 5.932487239273088, 5.9324498384700455, 5.932412537072249, 5.932375235674453, 5.932337981689959, 5.932300727705465, 5.932263490247368, 5.9322262527892695, 5.932189014921337, 5.932151777053406, 5.9321145292009865, 5.932077281348567, 5.932040018196682, 5.932002755044797, 5.931965473449637, 5.931928191854476, 5.931890889992288, 5.9318535881301, 5.931816264918248, 5.931778941706395, 5.931741596540533, 5.93170425137467, 5.93166689412623, 5.931629536877789, 5.93159215582097, 5.931554774764151, 5.931517367177254, 5.931479959590358, 5.931442527054081, 5.931405094517804, 5.931367637787139, 5.9313301810564765, 5.9312927006223815, 5.931255220188285, 5.931217716461839, 5.931180212735394, 5.931142685720552, 5.931105158705709, 5.931067610066721, 5.931030061427735, 5.930992489627475, 5.930954917827217, 5.930917320157309, 5.9308797224874, 5.930842068905103, 5.9308044153228066, 5.930766709440913, 5.93072900355902, 5.930691258012337, 5.930653512465655, 5.930615712283345, 5.930577912101033, 5.930540037472498, 5.930502162843964, 5.930464235645321, 5.930426308446678, 5.9304071844073984, 5.930388060368119, 5.930334758507918, 5.930281456647717, 5.930233812988457, 5.930186169329199, 5.930142225915476, 5.930098282501753, 5.930115604385054, 5.930132926268355, 5.930114617260046, 5.930096308251737, 5.9300732185007075, 5.930050128749677, 5.9300240423862896, 5.929997956022904, 5.929979755382322, 5.929961554741739, 5.929917294259394, 5.929873033777048, 5.929832404851348, 5.929791775925647, 5.929753644840935, 5.929715513756222, 5.929725567639611, 5.929735621522999, 5.929751202606762, 5.929766783690526, 5.9297504960683876, 5.9297342084462485, 5.929717903282146, 5.929701598118045, 5.929685274777441, 5.929668951436835, 5.929652609032965, 5.929636266629095, 5.650907041814133, 5.37217781699917, 5.372160228806475, 5.372142640613782, 5.372125028749877, 5.372107416885971, 5.372089779819839, 5.372072142753706, 5.372054479874701, 5.3720368169956965, 5.37201913052095, 5.372001444046206, 5.3719837236314625, 5.371966003216718, 5.371948204007412, 5.371930404798106, 5.371912582510668, 5.371894760223231, 5.371876915908419, 5.371859071593606, 5.371841203716155, 5.371823335838705, 5.371805444372051, 5.371787552905399, 5.3717696378241016, 5.371751722742805, 5.371733784022358, 5.371715845301911, 5.371697867138647, 5.3716798889753825, 5.371661794922953, 5.371643700870523, 5.371625586342795, 5.371607471815065, 5.371589333091605, 5.371571194368145, 5.371553014443157, 5.371534834518169, 5.371516631249478, 5.371498427980789, 5.3714802013090965, 5.371461974637405, 5.371443724471008, 5.371425474304611, 5.3713467522910205, 5.371268030277428, 5.371251535222401, 5.371235040167374, 5.37121851518825, 5.371201990209128, 5.371185436804323, 5.371168883399517, 5.3711523124553135, 5.371135741511109, 5.371119133591119, 5.371102525671129, 5.371085917001799, 5.3710693083324665, 5.371052716596411, 5.371036124860355, 5.371019557996417, 5.371002991132479, 5.37098642943192, 5.370969867731361, 5.3709533303643235, 5.370936792997286, 5.370920314568869, 5.370903836140451, 5.370887427070941, 5.370871018001431, 5.370854688727774, 5.370838359454116, 5.370822121597926, 5.370805883741735, 5.370789746206705, 5.3707736086716755, 5.370757581666519, 5.370741554661362, 5.370725646630578, 5.370709738599795, 5.370693958534914, 5.370678178470033, 5.370662539246045, 5.3706469000220585, 5.370631412383326, 5.3706159247445955, 5.370600598735346, 5.370585272726096, 5.370570056323438, 5.370554839920781, 5.370539674951229, 5.370524509981675, 5.3705093177435455, 5.370494125505415, 5.370478905779409, 5.370463686053404, 5.370448438834018, 5.370433191614631, 5.370417917994951, 5.370402644375272, 5.370387341642122, 5.37037203890897, 5.370356711922478, 5.370341384935986, 5.370326025456287, 5.37031066597659, 5.370295268674866, 5.370279871373142, 5.370264446897472, 5.370249022421801, 5.370233570804091, 5.370218119186381, 5.370202614466601, 5.370187109746821, 5.370171558543763, 5.370156007340705, 5.370140429125521, 5.370124850910337, 5.370109245441494, 5.370093639972651, 5.370078006836806, 5.370062373700962, 5.370046711882724, 5.370031050064486, 5.370015360981836, 5.369999671899186, 5.3699839569680465, 5.369968242036908, 5.369952502016311, 5.369936761995714, 5.369920995301969, 5.369905228608224, 5.369889435108542, 5.369873641608858, 5.369857821472479, 5.3698420013361, 5.369826154627896, 5.369810307919691, 5.36979443516963, 5.36977856241957, 5.369762663930155, 5.36974676544074, 5.369730840588028, 5.369714915735314, 5.369698963373318, 5.369683011011322, 5.369667031577505, 5.369651052143688, 5.369635046686466, 5.369619041229243, 5.369603009858348, 5.369586978487451, 5.369570921922603, 5.369554865357755, 5.369538783590971, 5.369522701824188, 5.369506579709262, 5.369490457594336, 5.369474251273449, 5.369458044952562, 5.369441813748122, 5.3694255825436805, 5.36940932606223, 5.369393069580779, 5.369376747175707, 5.369360424770634, 5.3693440778877175, 5.3693277310048, 5.369311358939103, 5.369294986873408, 5.369278592378088, 5.369262197882769, 5.369245776621358, 5.3692293553599475, 5.369212910129418, 5.369196464898888, 5.369179996437877, 5.369163527976866, 5.369147036897973, 5.369130545819079, 5.369114033907765, 5.369097521996453, 5.369080988344931, 5.369064454693408, 5.369047899329568, 5.369031343965728, 5.369014767257168, 5.36899819054861]}}, "0": {"md": [2072, 2078.685, 2085.37, 2092.0550000000003, 2098.7400000000002, 2105.425, 2112.11, 2112.21, 2112.31, 2121.575, 2130.84, 2140.105, 2149.37, 2158.635, 2167.9, 2168, 2168.1, 2178.054558823529, 2188.0091176470587, 2197.9636764705883, 2207.9182352941175, 2217.8727941176467, 2227.8273529411763, 2237.781911764706, 2247.736470588235, 2257.6910294117642, 2267.645588235294, 2277.6001470588235, 2287.554705882353, 2297.5092647058827, 2307.463823529412, 2317.418382352941, 2327.3729411764707, 2337.3275000000003, 2347.2820588235295, 2357.2366176470587, 2367.1911764705883, 2377.145735294118, 2387.100294117647, 2397.0548529411763, 2407.009411764706, 2416.9639705882355, 2426.9185294117647, 2436.873088235294, 2446.8276470588235, 2456.782205882353, 2466.7367647058823, 2476.6913235294114, 2486.645882352941, 2496.6004411764707, 2506.5550000000003, 2516.5095588235295, 2526.4641176470586, 2536.4186764705883, 2546.373235294118, 2556.3277941176475, 2566.2823529411767, 2576.236911764706, 2586.1914705882355, 2596.146029411765, 2606.1005882352943, 2616.0551470588234, 2626.009705882353, 2635.9642647058827, 2645.918823529412, 2655.873382352941, 2665.8279411764706, 2675.7825000000003, 2685.7370588235294, 2695.6916176470586, 2705.646176470588, 2715.600735294118, 2725.5552941176475, 2735.5098529411766, 2745.464411764706, 2755.4189705882354, 2765.373529411765, 2775.3280882352947, 2785.282647058824, 2795.237205882353, 2805.1917647058826, 2815.1463235294123, 2825.1008823529414, 2835.0554411764706, 2845.01, 2845.11, 2845.21, 2854.576666666667, 2863.9433333333336, 2873.3100000000004, 2882.6766666666667, 2892.0433333333335, 2901.4100000000003, 2901.51, 2901.61, 2909.7266666666665, 2917.8433333333332, 2925.96, 2934.076666666667, 2942.1933333333336, 2950.31, 2950.41, 2950.5099999999998, 2958.758333333333, 2967.0066666666667, 2975.255, 2983.503333333333, 2991.7516666666666, 3000, 3002.605, 3005.21, 3005.31, 3005.41, 3013.7212499999996, 3022.0325, 3030.34375, 3038.6549999999997, 3046.96625, 3055.2775, 3063.58875, 3071.9, 3072, 3072.1, 3082.0476190476193, 3091.995238095238, 3101.942857142857, 3111.890476190476, 3121.838095238095, 3131.785714285714, 3141.7333333333336, 3151.6809523809525, 3161.6285714285714, 3171.5761904761903, 3181.523809523809, 3191.4714285714285, 3201.419047619048, 3211.366666666667, 3221.3142857142857, 3231.2619047619046, 3241.2095238095235, 3251.157142857143, 3261.104761904762, 3271.052380952381, 3281, 3290.947619047619, 3300.895238095238, 3310.842857142857, 3320.7904761904765, 3330.7380952380954, 3340.6857142857143, 3350.633333333333, 3360.580952380952, 3370.5285714285715, 3380.476190476191, 3390.4238095238097, 3400.3714285714286, 3410.3190476190475, 3420.2666666666664, 3430.214285714286, 3440.161904761905, 3450.109523809524, 3460.057142857143, 3470.004761904762, 3479.9523809523807, 3489.9, 3490, 3490.1, 3500.06338028169, 3510.0267605633803, 3519.9901408450705, 3529.9535211267603, 3539.9169014084505, 3549.8802816901407, 3559.843661971831, 3569.807042253521, 3579.7704225352113, 3589.7338028169015, 3599.6971830985913, 3609.6605633802815, 3619.6239436619717, 3629.587323943662, 3639.550704225352, 3649.5140845070423, 3659.4774647887325, 3669.4408450704223, 3679.4042253521125, 3689.3676056338027, 3699.330985915493, 3709.294366197183, 3719.257746478873, 3729.221126760563, 3739.1845070422532, 3749.1478873239435, 3759.1112676056337, 3769.074647887324, 3779.038028169014, 3789.001408450704, 3798.964788732394, 3808.9281690140842, 3818.8915492957744, 3828.8549295774646, 3838.818309859155, 3848.781690140845, 3858.745070422535, 3868.708450704225, 3878.671830985915, 3888.6352112676054, 3898.5985915492956, 3908.561971830986, 3918.525352112676, 3928.488732394366, 3938.452112676056, 3948.415492957746, 3958.3788732394364, 3968.3422535211266, 3978.305633802817, 3988.269014084507, 3998.232394366197, 4008.195774647887, 4018.159154929577, 4028.1225352112674, 4038.0859154929576, 4048.049295774648, 4058.012676056338, 4067.976056338028, 4077.939436619718, 4087.902816901408, 4097.866197183099, 4107.829577464789, 4117.792957746478, 4127.756338028169, 4137.71971830986, 4147.683098591549, 4157.646478873239, 4167.609859154929, 4177.573239436619, 4187.536619718309, 4197.5, 4207.46338028169, 4217.4267605633795, 4227.39014084507, 4237.353521126761, 4247.316901408451, 4257.28028169014, 4267.243661971831, 4277.207042253522, 4287.170422535211, 4297.133802816901, 4307.097183098591, 4317.060563380281, 4327.023943661971, 4336.987323943662, 4346.950704225352, 4356.9140845070415, 4366.877464788732, 4376.840845070423, 4386.804225352113, 4396.767605633802, 4406.730985915493, 4416.694366197184, 4426.657746478873, 4436.621126760563, 4446.584507042253, 4456.547887323943, 4466.511267605633, 4476.474647887324, 4486.438028169014, 4496.4014084507035, 4506.364788732394, 4516.328169014085, 4526.2915492957745, 4536.254929577464, 4546.218309859155, 4556.181690140846, 4566.145070422535, 4576.108450704225, 4586.071830985915, 4596.035211267605, 4605.998591549295, 4615.961971830986, 4625.925352112676, 4635.888732394365, 4645.852112676056, 4655.815492957747, 4665.7788732394365, 4675.742253521126, 4685.705633802816, 4695.669014084507, 4705.632394366197, 4715.595774647887, 4725.559154929577, 4735.522535211267, 4745.485915492957, 4755.449295774648, 4765.412676056338, 4775.376056338027, 4785.339436619718, 4795.302816901409, 4805.2661971830985, 4815.229577464788, 4825.192957746478, 4835.156338028169, 4845.119718309859, 4855.083098591549, 4865.046478873239, 4875.009859154929, 4884.973239436619, 4894.93661971831, 4904.9, 4905, 4905.1, 4914.734807692308, 4924.369615384616, 4934.004423076924, 4943.639230769231, 4953.274038461539, 4962.908846153847, 4972.5436538461545, 4982.178461538462, 4991.81326923077, 5001.448076923077, 5011.0828846153845, 5020.717692307692, 5030.3525, 5039.987307692308, 5049.622115384615, 5059.256923076923, 5068.891730769231, 5078.526538461539, 5088.161346153846, 5097.796153846154, 5107.430961538462, 5117.06576923077, 5126.700576923077, 5136.335384615385, 5145.970192307692, 5155.605, 5165.239807692307, 5174.874615384615, 5184.509423076923, 5194.1442307692305, 5203.779038461538, 5213.413846153846, 5223.048653846154, 5232.683461538461, 5242.318269230769, 5251.953076923077, 5261.587884615385, 5271.222692307692, 5280.8575, 5290.492307692308, 5300.1271153846155, 5309.761923076923, 5319.396730769231, 5329.031538461538, 5338.666346153846, 5348.301153846153, 5357.935961538461, 5367.570769230769, 5377.2055769230765, 5386.840384615384, 5396.475192307692, 5406.11, 5406.21, 5406.31, 5414.9575, 5423.605, 5432.2525, 5440.9, 5441, 5441.1, 5449.955714285715, 5458.811428571429, 5467.667142857143, 5476.522857142857, 5485.378571428571, 5494.234285714286, 5503.09, 5511.9457142857145, 5520.801428571429, 5529.657142857143, 5538.512857142858, 5547.368571428571, 5556.2242857142855, 5565.08], "initial_mass": 94211.71871776017, "temperature": {"start": [4.439999999999998, 4.625415864083152, 4.810802753046573, 4.996131696298562, 5.181373732302632, 5.366542435621966, 5.551709016426514, 5.554478897964373, 5.557248779502174, 5.813878303983017, 6.07050782846386, 6.327137352944703, 6.583766877425546, 6.840396401906389, 7.097025926387232, 7.099795807925091, 7.102565689462892, 7.378295176489246, 7.654024663515543, 7.929754150541896, 8.205483637568193, 8.481213124594547, 8.756942611620843, 9.032672098647197, 9.308401585673494, 9.584131072699847, 9.859860559726144, 10.135590046752498, 10.411319533778794, 10.687049020805148, 10.962778507831445, 11.238507994857798, 11.514237481884095, 11.789966968910448, 12.065696455936745, 12.341425942963042, 12.617155429989396, 12.89288491701575, 13.168614404042046, 13.444343891068343, 13.720073378094696, 13.99580286512105, 14.271532352147347, 14.547261839173643, 14.822991326199997, 15.09872081322635, 15.374450300252647, 15.650179787278944, 15.925909274305297, 16.20163876133165, 16.477368248357948, 16.7530977353843, 17.028827222410598, 17.304556709436895, 17.58028619646325, 17.856015683489602, 18.1317451705159, 18.407474657542195, 18.68320414456855, 18.958933631594903, 19.2346631186212, 19.510392605647496, 19.78612209267385, 20.061851579700203, 20.3375810667265, 20.613310553752797, 20.88904004077915, 21.164769527805447, 21.4404990148318, 21.716228501858097, 21.99195798888445, 22.267687475910748, 22.5434169629371, 22.819146449963398, 23.09487593698975, 23.37060542401605, 23.646334911042402, 23.9220643980687, 24.197793885095052, 24.47352337212135, 24.749252859147703, 25.024982346174, 25.300711833200353, 25.57644132022665, 25.852170807253003, 25.854940688790805, 25.857710570328663, 26.11715614103963, 26.376601711750595, 26.636047282461618, 26.895492853172584, 27.15493842388355, 27.414383994594516, 27.417153876132375, 27.419923757670176, 27.644745809158167, 27.869567860646157, 28.094389912134147, 28.319211963622138, 28.544034015110128, 28.76885606659812, 28.77162594813592, 28.774395829673722, 29.00286489185322, 29.23133395403272, 29.459803016212163, 29.688272078391662, 29.916741140571105, 30.145210202750604, 30.21736561681132, 30.289521030872038, 30.292290912409896, 30.295060793947698, 30.525272573261418, 30.75548435257508, 30.9856961318888, 31.215907911202464, 31.446119690516184, 31.676331469829904, 31.906543249143567, 32.13675502845729, 32.13952490999509, 32.14229479153295, 32.41783205498757, 32.693369318442194, 32.96890658189676, 33.244443845351384, 33.51998110880601, 33.79551837226063, 34.071055635715254, 34.34659289916988, 34.6221301626245, 34.89766742607907, 35.17320468953369, 35.448741952988314, 35.72427921644294, 35.99981647989756, 36.275353743352184, 36.55089100680681, 36.826428270261374, 37.101965533716, 37.37750279717068, 37.653040060625244, 37.92857732407987, 38.20411458753449, 38.479651850989114, 38.75518911444374, 39.03072637789836, 39.306263641352984, 39.58180090480755, 39.857338168262174, 40.1328754317168, 40.40841269517142, 40.683949958626044, 40.95948722208067, 41.23502448553529, 41.51056174898986, 41.78609901244448, 42.061636275899104, 42.33717353935373, 42.61271080280835, 42.888248066262975, 43.1637853297176, 43.439322593172164, 43.714859856626845, 43.717629738164646, 43.72039961970245, 43.99637345066975, 44.27234728163705, 44.548321112604356, 44.82429494357166, 45.100268774538904, 45.376228838361385, 45.65216023623867, 45.92806195759658, 46.203852610862555, 46.479420854259274, 46.75472962389546, 47.0297419198489, 47.304420782041575, 47.578729295207154, 47.85263059385204, 48.12608786721006, 48.39906436418926, 48.67152339831148, 48.94342835264257, 49.214742684713485, 49.48542993143144, 49.75545371398039, 50.024777742709944, 50.29336582201279, 50.56118185518886, 50.828189849296734, 51.094353919990795, 51.35963829634392, 51.62400732565487, 51.88742547823978, 52.149857352207164, 52.411267678215836, 52.67162132421464, 52.93088330016428, 53.18901876273969, 53.44599302001262, 53.70177153611428, 53.95631993587659, 54.20960400945211, 54.46158971691153, 54.71224319281862, 54.96152883326249, 55.20940976711586, 55.45585238064638, 55.70143074750922, 55.94700239687933, 56.192574046249376, 56.438145695619426, 56.683717344989475, 56.929288994359524, 57.17486064372957, 57.42043229309968, 57.66600394246973, 57.91157559183978, 58.15714724120983, 58.40271889057988, 58.648290539949926, 58.893862189319975, 59.13943383869008, 59.38500548806013, 59.63057713743018, 59.87614878680023, 60.12172043617028, 60.367292085540385, 60.612863734910434, 60.85843538428048, 61.10400703365053, 61.34957868302058, 61.59515033239063, 61.84072198176068, 62.086293631130786, 62.331865280500836, 62.577436929870885, 62.823008579240934, 63.06858022861104, 63.31415187798103, 63.55972352735114, 63.80529517672119, 64.05086682609124, 64.29643847546129, 64.54201012483134, 64.78758177420139, 65.03315342357143, 65.27872507294154, 65.52429672231159, 65.76986837168164, 66.01544002105169, 66.26101167042174, 66.50658331979184, 66.7521549691619, 66.99772661853194, 67.24329826790199, 67.48886991727204, 67.73444156664215, 67.9800132160122, 68.22558486538219, 68.4711565147523, 68.71672816412234, 68.9622998134924, 69.2078714628625, 69.45344311223249, 69.6990147616026, 69.94458641097265, 70.1901580603427, 70.43572970971275, 70.68130135908285, 70.9268730084529, 71.17244465782295, 71.418016307193, 71.66358795656305, 71.9091596059331, 72.15473125530315, 72.40030290467325, 72.6458745540433, 72.89144620341335, 73.1370178527834, 73.38258950215351, 73.6281611515235, 73.87373280089355, 74.1193044502636, 74.3648760996337, 74.61044774900375, 74.8560193983738, 75.10159104774385, 75.34716269711396, 75.59273434648401, 75.83830599585406, 76.0838776452241, 76.32944929459416, 76.5750209439642, 76.82059259333425, 77.06616424270436, 77.31173589207441, 77.55730754144446, 77.80287919081451, 78.04845084018461, 78.29402248955466, 78.53959413892471, 78.78516578829476, 79.03073743766481, 79.27630908703486, 79.52188073640491, 79.52434547871553, 79.52681022102615, 79.76428340276465, 80.00175658450314, 80.23922976624158, 80.47670294798007, 80.71417612971857, 80.951649311457, 81.1891224931955, 81.42659567493399, 81.66406885667243, 81.90154203841087, 82.13901522014936, 82.37648840188785, 82.61396158362629, 82.85143476536479, 83.08890794710328, 83.32638112884177, 83.56385431058021, 83.8013274923187, 84.03880067405714, 84.27627385579564, 84.51374703753413, 84.75122021927257, 84.98869340101106, 85.22616658274956, 85.463639764488, 85.70111294622643, 85.93858612796492, 86.17605930970342, 86.41353249144191, 86.6510056731804, 86.88847885491884, 87.12595203665734, 87.36342521839583, 87.60089840013427, 87.8383715818727, 88.0758447636112, 88.3133179453497, 88.55079112708819, 88.78826430882663, 89.02573749056512, 89.26321067230361, 89.50068385404205, 89.73815703578055, 89.97563021751898, 90.21310339925748, 90.45057658099591, 90.68804976273441, 90.9255229444729, 91.1629961262114, 91.40046930794983, 91.63794248968833, 91.87541567142682, 91.87788041373744, 91.88034515604807, 92.09348374735828, 92.30662233866849, 92.5197609299787, 92.73289952128891, 92.73536426359954, 92.73782900591016, 92.95609954281713, 93.17437007972416, 93.39264061663107, 93.61091115353804, 93.82918169044507, 94.04745222735198, 94.26572276425901, 94.48399330116598, 94.70226383807295, 94.92053437497992, 95.1388049118869, 95.35707544879381, 95.57534598570084, 95.79361652260775], "final": [60.00247825806139, 62.467557828904546, 64.93263739974759, 66.87302355296674, 68.81340970618584, 70.3382290636822, 71.86304842117858, 71.88731334776872, 71.91729328594931, 74.04732327201395, 76.17735325807871, 77.54108190744148, 78.9048105568043, 79.78056599992306, 80.65632144304169, 80.65686567128705, 80.65740989953247, 80.61324669763371, 80.56908349573496, 80.58001898240673, 80.5909544690785, 80.63279925512438, 80.67464404117027, 80.73380205907927, 80.79296007698815, 80.86176694842794, 80.93057381986773, 81.0043691284032, 81.07816443693866, 81.15430441014507, 81.23044438335137, 81.30778561760962, 81.38512685186794, 81.46303362111627, 81.54094039036454, 81.6190522607427, 81.69716413112087, 81.77527548725516, 81.85338684338944, 81.931382452138, 82.00937806088666, 82.08719403771534, 82.16501001454401, 82.24260891883756, 82.32020782313111, 82.39756786789849, 82.47492791266586, 82.55203644898057, 82.62914498529528, 82.70599457240155, 82.78284415950782, 82.85955021760628, 82.9362562757047, 83.01267912169112, 83.08910196767755, 83.1652101381078, 83.24131830853804, 83.31713084067968, 83.39294337282132, 83.46846939025966, 83.54399540769793, 83.61924066014257, 83.6944859125872, 83.76945442541876, 83.84442293825026, 83.91911628936828, 83.99380964048623, 84.06823304298399, 84.14265644548175, 84.21680959193054, 84.29096273837928, 84.36482246288517, 84.43868218739101, 84.51193988470533, 84.58519758201965, 84.65783189689978, 84.7304662117798, 84.80262884440424, 84.87479147702862, 84.9463759055352, 85.01796033404179, 85.08868432965039, 85.159408325259, 85.22950598347126, 85.29960364168358, 85.29683311220396, 85.29636337410568, 85.14710139864832, 84.99783942319095, 84.91770003010879, 84.83756063702657, 84.8026185026589, 84.76767636829129, 84.77363121844394, 84.77270029380105, 84.98121646253605, 85.18973263127111, 85.34090243840149, 85.4920722455318, 85.60729527474479, 85.72251830395783, 85.71842554077944, 85.72036584521305, 85.62167814546513, 85.5229904457172, 85.46865852799476, 85.41432661027238, 85.39050005570584, 85.3666735011393, 85.39732369790613, 85.4279738946729, 85.09128197881068, 85.09013427640127, 84.9947458599035, 84.89935744340568, 84.80396902690791, 84.70946793152632, 84.76650039708045, 84.82336130181386, 84.89828787080046, 84.99607729417022, 86.67881729735592, 86.67999388840263, 86.79703668347781, 86.91407947855294, 87.03112227362811, 87.14816506870324, 87.19873608913497, 87.26641195385321, 87.33377917729547, 87.3840125916795, 87.43390813869644, 87.50099265005645, 87.55040909669543, 87.61708686327347, 87.66544999991959, 87.73118454654724, 87.77920995272615, 87.84466753618977, 87.90985961677512, 87.95754804813487, 88.00489602536027, 88.06980580783335, 88.1344329710929, 88.18143961406082, 88.24578384785468, 88.29244827619084, 88.35650928145458, 88.40283061455443, 88.46641903671116, 88.51218506668295, 88.55643124370573, 88.61863272851025, 88.66253418374288, 88.72449016703985, 88.78615616161477, 88.8297129600843, 88.87292794698033, 88.93410057018173, 88.9949934000561, 89.03786072185835, 89.08037896597051, 89.14099128693402, 89.1831608950796, 89.24349160351005, 88.40237035836026, 88.23888453276516, 88.3198183797598, 88.37824426306634, 88.43620791507726, 88.51678043156431, 88.59700262099403, 88.65450200966609, 88.7115357805148, 88.79149140500272, 88.87076174646586, 88.92732134717272, 88.98338313620451, 89.06211850421721, 89.14038162407286, 89.19593421397587, 89.27367098161187, 89.32870677964479, 89.38278197398654, 89.45960703981729, 89.51282744509638, 89.58882294380186, 89.66425716928256, 89.71693856104343, 89.79178975354881, 89.84392477056423, 89.89550640289468, 89.96975373760313, 90.04339084327086, 90.09441306590384, 90.14486868535397, 90.21785873613476, 90.29018095511697, 90.34006391653816, 90.41167805884379, 90.46098202776443, 90.5318545600635, 90.58057522061006, 90.62870715819446, 90.69885246797611, 90.74639143460917, 90.81579954730671, 90.88445211653396, 90.93139500214374, 90.99852201895158, 91.04401943037999, 91.08854443354613, 91.15468387850433, 91.22049107424203, 91.26458615807366, 91.30825097586882, 91.37372691579333, 91.43887153176223, 91.48210490360066, 91.52490618980164, 91.58973211373507, 91.63210006071813, 91.69657518992472, 91.73850708707698, 91.80268976008443, 91.84418716880998, 91.9079784376604, 91.97131431084915, 92.01237749643008, 92.0753859266639, 92.11601000489429, 92.15619316550402, 92.2188745053424, 92.28091621586236, 92.32029151140728, 92.38177367205196, 92.42044419616076, 92.45867173908033, 92.51982837639491, 92.58065670756122, 92.61843991165199, 92.67893524776167, 92.71627261570552, 92.75316399067793, 92.81331378809057, 92.84975781643152, 92.90957893916493, 92.94557454805681, 93.00508369207876, 93.06428868071907, 93.09983678800336, 93.13493371505723, 93.19381704270148, 93.25237736427493, 93.28702160045168, 93.34526095785714, 93.37945132036606, 93.41318666708662, 93.47110584573477, 93.50438525067528, 93.56199042731373, 93.61928514360426, 93.65210753765342, 93.68447144679402, 93.74144851687197, 93.79809423740153, 93.82999883782372, 93.86144287703632, 93.91776249521922, 93.9737685748355, 94.00475068922344, 94.03526976244427, 94.09096363403302, 94.14635372515744, 94.17640891406717, 94.20599901235511, 94.26108531399893, 94.29000706540285, 94.34460776701832, 94.39819577528954, 94.42584652678681, 94.45303278531247, 94.50632108045977, 94.53303398987828, 94.58601784805671, 94.61169739189256, 94.66388828952552, 94.71578442303547, 94.74099677202025, 94.76574133808037, 94.81733416582404, 94.84160904790099, 94.892931673936, 94.94393132405912, 94.96773833356485, 94.99107478276926, 95.0417853585983, 95.09221628036642, 95.115080020047, 95.13746993112153, 95.1876286124434, 95.20954429304481, 95.25945163249611, 95.30909725271192, 95.3305371609236, 95.35150018849049, 95.40088459536469, 95.45001225423584, 95.47049743405626, 96.1523490894001, 96.2546950077845, 96.26253045678345, 96.28638894050152, 96.31015043507557, 96.31777194285564, 96.3414380678206, 96.3488453139081, 96.3724289766293, 96.37962151176032, 96.38659900562573, 96.41010432298538, 96.43353571425507, 96.44029783736039, 96.44752875190471, 96.4130768516132, 96.43846239022753, 96.44470343231853, 96.450730377708, 96.47605746018598, 96.48186998782046, 96.50714427289256, 96.53237189185052, 96.53796968110498, 96.56315729110747, 96.56854002162714, 96.57370737308105, 96.59886222512011, 96.62395940894464, 96.62887502740773, 96.65353661283189, 96.65775034330363, 96.66174823209127, 96.68641165536218, 96.69019349585449, 96.71485979407487, 96.73953997121805, 96.74310543894893, 96.74645418446119, 96.77116226952273, 96.79591296664427, 96.79904464753258, 96.80195891440792, 96.82676880604777, 96.8516567173267, 96.85435321138317, 96.87934067362391, 96.88181902336567, 96.8796357335342, 96.87745244370274, 96.87526915387127, 96.87308586403981, 96.87090257420834, 96.86907572484245, 97.06395048816466, 97.06396939340533, 97.06560422409478, 97.07154326811462, 97.08046911338613, 97.0902449872616, 97.1667394452557, 97.16645661863942, 97.14141030157964, 97.11636398451992, 97.09131766746015, 97.06627135040031, 97.0412250333406, 97.01617871628082, 96.99113239922104, 96.96608608216133, 96.94103976510155, 96.91599344804172, 96.890947130982, 96.86590081392228, 96.8801610971949, 96.86043327835029]}, "area": {"start": [0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.042804378291357734, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.03589257158429343, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.020238763691650802, 0.0271505703987151, 0.0271505703987151, 0.0271505703987151, 0.0271505703987151, 0.0271505703987151, 0.0271505703987151, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207, 0.022883850205124207], "final": [0.04265518954187561, 0.042658713811827474, 0.04266223808177934, 0.04266488296843545, 0.04266752785509156, 0.04266947618408337, 0.04267142451307518, 0.039220340143856766, 0.03576925577463835, 0.03577183097473513, 0.03577440617483191, 0.03577575529937649, 0.035777104423921076, 0.03577767352084719, 0.0357782426177733, 0.03577680472158584, 0.03577536682539839, 0.035774409058450175, 0.03577345129150196, 0.03577257511731781, 0.035771698943133666, 0.03577086846271768, 0.035770037982301696, 0.035769233160983085, 0.035768428339664475, 0.035767637885791015, 0.03576684743191755, 0.03576606515138816, 0.035765282870858776, 0.03576450424865529, 0.03576372562645181, 0.03576294892191137, 0.03576217221737093, 0.03576139651025628, 0.035760620803141636, 0.0357598455478915, 0.035759070292641366, 0.03575829518952999, 0.03575752008641862, 0.03575674496549389, 0.03575596984456916, 0.035755194611259165, 0.03575441937794917, 0.035753643978753254, 0.03575286857955733, 0.03575209298256522, 0.03575131738557311, 0.03575054157193715, 0.03574976575830118, 0.03574898971762523, 0.03574821367694929, 0.03574743758863148, 0.035746661500313665, 0.035745885155364227, 0.03574510881041478, 0.035744332159421355, 0.03574355550842793, 0.03574277857952143, 0.035742001650614925, 0.035741224456943055, 0.035740447263271184, 0.03573966981458475, 0.03573889236589831, 0.035738114669801105, 0.0357373369737039, 0.03573655903080147, 0.035735781087899036, 0.03573500292683995, 0.035734224765780864, 0.03573344636506909, 0.03573266796435731, 0.03573188937008452, 0.03573111077581173, 0.03573033189435777, 0.035729553012903814, 0.03572877337713233, 0.03572799374136084, 0.035727213575162814, 0.035726433408964794, 0.03572565302012198, 0.03572487263127916, 0.035724091316615116, 0.03572331000195108, 0.03572252792935751, 0.035721745856763944, 0.03917335082706193, 0.04262495579735991, 0.042623885365052336, 0.04262281493274475, 0.04262185034878336, 0.042620885764821974, 0.04261999043902257, 0.04261909511322317, 0.039167421402188415, 0.03571574769115367, 0.03571533360398049, 0.03571491951680731, 0.035714421010251345, 0.03571392250369538, 0.03571337112718491, 0.03571281975067444, 0.039164522740590776, 0.04261622573050711, 0.042615333742289374, 0.04261444175407165, 0.0426136177045499, 0.04261279365502815, 0.04261201636172749, 0.04261123906842683, 0.04261150890838892, 0.04261177874835101, 0.039159901724405, 0.03570802470045899, 0.03570781108332143, 0.03570759746618388, 0.035707383668210725, 0.03570716987023757, 0.03570695587982903, 0.035706741889420475, 0.035706527690544894, 0.03570631349166931, 0.02793907449172615, 0.02017183549178299, 0.02017168444021125, 0.02017153338863951, 0.02017138219486119, 0.020171231001082875, 0.020171079641166604, 0.020170928281250333, 0.02017077674733898, 0.02017062521342763, 0.020170473540252483, 0.02017032186707734, 0.020170169987243875, 0.02017001810741041, 0.020169865705629012, 0.020169713303847616, 0.020169560773991714, 0.020169408244135812, 0.020169255600945887, 0.02016910295775596, 0.02016895018107607, 0.020168797404396182, 0.0201686444944349, 0.020168491584473616, 0.02016833854146904, 0.020168185498464462, 0.02016803232266984, 0.02016787914687522, 0.02016772573290922, 0.020167572318943224, 0.020167418115875593, 0.02016726391280796, 0.02016710962828851, 0.020166955343769066, 0.020166800918426896, 0.020166646493084722, 0.020166491653625194, 0.020166336814165662, 0.020166181849655275, 0.020166026885144888, 0.020165871795623225, 0.020165716706101563, 0.02016556148963855, 0.020165406273175535, 0.020164395396317925, 0.020163384519460318, 0.020163245087995045, 0.020163105656529776, 0.020162966070072997, 0.020162826483616218, 0.020162686762778256, 0.020162547041940294, 0.0201624073279833, 0.020162267614026303, 0.020162127476399307, 0.02016198733877231, 0.020161847178802247, 0.02016170701883218, 0.020161567024954984, 0.02016142703107779, 0.02016128723297924, 0.020161147434880688, 0.0201610077229647, 0.020160868011048716, 0.02016072851952527, 0.020160589028001823, 0.02016044999130994, 0.020160310954618055, 0.02016017244386079, 0.020160033933103522, 0.020159896019904526, 0.02015975810670553, 0.020159620880772396, 0.02015948365483926, 0.02015934716545399, 0.020159210676068715, 0.020159074992379393, 0.02015893930869007, 0.020158804473276785, 0.0201586696378635, 0.020158535700212962, 0.020158401762562422, 0.020158268836066067, 0.02015813590956971, 0.020158004073466993, 0.020157872237364278, 0.020157741558702334, 0.02015761088004039, 0.020157481013698162, 0.020157351147355933, 0.020157221683241085, 0.020157092219126236, 0.02015696261964524, 0.02015683302016424, 0.020156703284453324, 0.020156573548742406, 0.02015644367757772, 0.02015631380641303, 0.020156183817142737, 0.020156053827872444, 0.020155923678587196, 0.020155793529301948, 0.0201556632996198, 0.020155533069937653, 0.020155402626814457, 0.02015527218369126, 0.020155141441555464, 0.020155010699419672, 0.020154879832006305, 0.020154748964592933, 0.02015461797363734, 0.020154486982681748, 0.020154355706103803, 0.020154224429525858, 0.0201540929039157, 0.02015396137830554, 0.02015382973438916, 0.02015369809047278, 0.02015356632558329, 0.0201534345606938, 0.020153302669674848, 0.020153170778655898, 0.020153038744937856, 0.02015290671121981, 0.02015277455829384, 0.02015264240536787, 0.02015251015623004, 0.020152377907092216, 0.020152245571531908, 0.0201521132359716, 0.020151980793321513, 0.02015184835067143, 0.0201517158001747, 0.02015158324967797, 0.020151450594927685, 0.020151317940177403, 0.020151185183070495, 0.020151052425963583, 0.020150919575386443, 0.020150786724809307, 0.020150653786190284, 0.02015052084757126, 0.02015038781240247, 0.02015025477723368, 0.0201501216278679, 0.020149988478502124, 0.020149855222866712, 0.020149721967231297, 0.02014958862308784, 0.020149455278944385, 0.02014932184887897, 0.02014918841881355, 0.020149054914546865, 0.02014892141028018, 0.020148787832659856, 0.02014865425503953, 0.020148520502594646, 0.02014838675014976, 0.020148252537787834, 0.02014811832542591, 0.02014798404475849, 0.020147849764091064, 0.02014771541501657, 0.02014758106594208, 0.020147446385989705, 0.020147311706037334, 0.020147176967745345, 0.02014704222945336, 0.020146907421907487, 0.020146772614361614, 0.02014663778309678, 0.020146502951831947, 0.020146368025252003, 0.020146233098672063, 0.02014609812366683, 0.0201459631486616, 0.02014582813915559, 0.020145693129649582, 0.020145558096257572, 0.020145423062865563, 0.020145288033808672, 0.02014515300475178, 0.020145017967335553, 0.020144882929919325, 0.02014474788565315, 0.02014461284138697, 0.020144477796962667, 0.020144342752538364, 0.020213744776391516, 0.020283146800244668, 0.020283136718784643, 0.020283126637324615, 0.020283116675690088, 0.020283106714055563, 0.020283096873579175, 0.020283087033102786, 0.020283077322850167, 0.02028306761259755, 0.02028305803560612, 0.020283048458614686, 0.020283039018125143, 0.020283029577635604, 0.020282980674016484, 0.020282931770397365, 0.02028292406317527, 0.020282916355953178, 0.02028290879559185, 0.02028290123523053, 0.020282893825801084, 0.02028288641637164, 0.020282879162263553, 0.020282871908155465, 0.020282864814112636, 0.020282857720069807, 0.02028285079123676, 0.020282843862403716, 0.020282837107092003, 0.02028283035178029, 0.020282823827042887, 0.020282817302305484, 0.02028281096755393, 0.02028280463280238, 0.020282798488952522, 0.020282792345102663, 0.020282786399804253, 0.020282780454505843, 0.020282774717472758, 0.02028276898043967, 0.020282763461846754, 0.020282757943253838, 0.020282752654435736, 0.020282747365617637, 0.02028274231954707, 0.0202827372734765, 0.020282732484974624, 0.020282727696472748, 0.02028272318260397, 0.02028271866873519, 0.020282714449342376, 0.020282710229949562, 0.020282706328368812, 0.020282702426788063, 0.023730434245889002, 0.027178166064989944, 0.027178100833269853, 0.02717803560154976, 0.027177970705487213, 0.027177905809424665, 0.025043938744074908, 0.02290997167872515, 0.02290990771029729, 0.02290984374186943, 0.022909780215184066, 0.0229097166884987, 0.02290965367513053, 0.022909590661762357, 0.02290952825797075, 0.022909465854179144, 0.02290940419573969, 0.022909342537300235, 0.02290928182886084, 0.02290922112042145, 0.022909161702993144, 0.022909102285564836]}, "density": {"start": [9.101301349557335, 9.100544668045318, 9.099788290825025, 9.099032212287598, 9.098276734992462, 9.0975216357, 9.09676670247627, 9.09675541040743, 9.096744118373312, 9.095698030644254, 9.094652240925138, 9.093606687041781, 9.092561431099853, 9.091516410888405, 9.090471688549899, 9.090460413825209, 9.090449139135218, 9.089326930840619, 9.088205066325255, 9.087083473682146, 9.085962224733418, 9.084841247526741, 9.083720613929641, 9.082600251944514, 9.081480233484205, 9.080360486505917, 9.079241082967734, 9.078121950781748, 9.077003161951197, 9.075884644343146, 9.074766470005912, 9.073648566756647, 9.072530086407435, 9.07141109915502, 9.0702924565336, 9.069174086584352, 9.068056061181112, 9.066938308319829, 9.065820899919615, 9.064703763931258, 9.06358697231908, 9.062470452988796, 9.06135427794984, 9.060238375062937, 9.059122816382567, 9.058007529724534, 9.056892587188283, 9.055777916544784, 9.05466358993836, 9.053549535095224, 9.052435824204506, 9.051322384947746, 9.05020928955879, 9.04909646567458, 9.047983985573612, 9.046871776848311, 9.045759911821735, 9.044648318041867, 9.043537067876255, 9.04242608882852, 9.041315453310617, 9.040205088781887, 9.03909506769861, 9.037985317475936, 9.036875910614379, 9.035766774484975, 9.034657981632405, 9.033549459383662, 9.032441280327514, 9.031333371746998, 9.030225806274888, 9.02911691766027, 9.028008305352529, 9.026899965085425, 9.02579196928017, 9.024684245386357, 9.023576865869844, 9.022469758136072, 9.021362994695098, 9.020256502908289, 9.01915035532982, 9.018044479277071, 9.016938947348256, 9.015833686816842, 9.014728770324997, 9.014717672098545, 9.014706573906812, 9.013667164637605, 9.012628059898418, 9.01158919522574, 9.010550635012878, 9.009512314759931, 9.008474298896635, 9.008463218170895, 9.008452137479846, 9.007552845877912, 9.006653782794132, 9.005754899747526, 9.004856245173455, 9.003957770567379, 9.003059524388249, 9.003048458822166, 9.003037393290754, 9.002124765383657, 9.00121237332657, 9.00030016697889, 8.99938819643342, 8.998476411524937, 8.99756486237088, 8.997277014220213, 8.996989189581297, 8.99697814101968, 8.996967092492707, 8.996048917110794, 8.995130981029032, 8.994213233255566, 8.993295724733418, 8.99237840444568, 8.99146132336045, 8.990544430435806, 8.989627776664888, 8.989616748737829, 8.989605720845386, 8.988508844176378, 8.987412303323916, 8.986314415199399, 8.985216871022972, 8.984119597834468, 8.983022668510051, 8.981926010046466, 8.980829695363008, 8.979733651413419, 8.978637951160044, 8.9775425215137, 8.976447435479708, 8.975352619926037, 8.974258147900901, 8.973163946229498, 8.972070088002862, 8.970976500003507, 8.969883255365191, 8.968790280827827, 8.967697649567826, 8.966605288282574, 8.965513270191057, 8.964421521948214, 8.963330116815522, 8.962238981405552, 8.9611481890222, 8.96005766623575, 8.958967486392424, 8.957877576020305, 8.956788008507873, 8.955698710341077, 8.95460975495057, 8.953521068780255, 8.952432725302884, 8.95134465092039, 8.950256919147535, 8.949169456344366, 8.948082336067586, 8.946995484635428, 8.945908975646448, 8.944822693587405, 8.94373520931177, 8.943724278578502, 8.94371334787998, 8.942624417783207, 8.941535832558127, 8.940447518441594, 8.939359549112803, 8.938271845652734, 8.937184556260094, 8.93609762427265, 8.935011186276652, 8.933925316834895, 8.932840911448778, 8.931757511513656, 8.930675946940754, 8.929595594522882, 8.928517447276933, 8.927440718180943, 8.926366562522434, 8.92529402964488, 8.92422443673347, 8.923156669768039, 8.922092207369525, 8.921029772515961, 8.919971004713123, 8.918914464390047, 8.917861951297386, 8.916811863859065, 8.91576616134164, 8.914723080798852, 8.913684740195285, 8.912649215940373, 8.91161878379008, 8.910591360326297, 8.909569378101123, 8.908550594776342, 8.907537598616623, 8.906527989361507, 8.905524509816678, 8.904524602887406, 8.903531164661178, 8.902541482379728, 8.901557262162092, 8.900576915438943, 8.899603714921108, 8.898634662980157, 8.897673102917858, 8.896714351727827, 8.895755907119263, 8.894797650417756, 8.893839666517959, 8.8928818965073, 8.891924399239588, 8.890967115773462, 8.890010104991559, 8.889053307923765, 8.8880967834815, 8.887140472665946, 8.88618443441726, 8.885228609707967, 8.884273057506904, 8.88331771875801, 8.882362652458735, 8.881407799524471, 8.880453218981256, 8.879498851715978, 8.878544756783198, 8.877590875041367, 8.876637265573514, 8.875683869209702, 8.874730745061381, 8.873777833930266, 8.872825194956187, 8.871872768912562, 8.870920614967542, 8.86996867386631, 8.869017004805285, 8.868065548501454, 8.86711436417946, 8.866163392528152, 8.865212692800348, 8.864262205656795, 8.863311990378433, 8.862361987597975, 8.861412256624428, 8.860462738056407, 8.859512318808868, 8.858561937145035, 8.857611828356225, 8.856661933195808, 8.85571231085189, 8.854762902049675, 8.85381376600546, 8.85286484341634, 8.851916193526753, 8.850967757005732, 8.85001959312581, 8.849071642528006, 8.848123964512896, 8.847176499693532, 8.846229307398485, 8.845282328212907, 8.844335621493295, 8.843389127796945, 8.842442906508241, 8.841496898156677, 8.840551162154476, 8.839605639003368, 8.838660388143365, 8.837715350048494, 8.8367705841865, 8.835826031003753, 8.834881749995686, 8.833937681581068, 8.83299388528296, 8.832050301492577, 8.831106989760567, 8.830163890450642, 8.829221063140984, 8.82827844816785, 8.8273361051369, 8.826393974356998, 8.825452115461232, 8.824510468731111, 8.823569093827109, 8.822627931003435, 8.821687039947891, 8.820746360887433, 8.81980595353715, 8.818865758093246, 8.817925165261217, 8.816984138187486, 8.816043383887138, 8.815102842702409, 8.814162574232856, 8.813222518793356, 8.812282736010863, 8.811343166172934, 8.810403868933873, 8.809464784553976, 8.808525972714833, 8.807587373649532, 8.806649047066903, 8.805710933172875, 8.804773091703467, 8.804763679896782, 8.804754268117536, 8.80384756171583, 8.80294111001306, 8.802034857044733, 8.801128858722898, 8.800223059058636, 8.799317513988452, 8.79841216749905, 8.797507075551334, 8.796602182107675, 8.795697543153336, 8.794793102626404, 8.793888916536456, 8.79298492879733, 8.792081195442876, 8.791177660362727, 8.790274379614969, 8.789371297065076, 8.788468468795315, 8.787565838647046, 8.786663462726676, 8.785761284851498, 8.78485936115201, 8.783957635421485, 8.783056163814472, 8.782154890100264, 8.781253870457405, 8.780353048631266, 8.779452480824352, 8.778552110758135, 8.777651994659042, 8.776752076218663, 8.775851255178061, 8.774950548272184, 8.774050096326594, 8.773149843168063, 8.772249844917502, 8.771350045377691, 8.770450500693554, 8.769551154643926, 8.76865206339771, 8.767753170709831, 8.766854532773118, 8.76595609331865, 8.765057908563131, 8.764159922213832, 8.763262190511295, 8.76236465713902, 8.761467378361345, 8.760570297838049, 8.759673471857218, 8.758776844054946, 8.757880470743032, 8.757871168292452, 8.757861865869282, 8.75705751953346, 8.756253378163297, 8.75544939632045, 8.754645619405622, 8.754636325433372, 8.754627031488521, 8.753804070846611, 8.752981325079642, 8.752158746498008, 8.751336382750928, 8.750514186130575, 8.749692204304406, 8.748870389546402, 8.748048789542235, 8.747227356547718, 8.746406138266712, 8.745585086936897, 8.74476425028028, 8.743943580516445, 8.743123125385512], "final": [1.6326750537290124, 1.6171678782125012, 1.6021353819839501, 1.5904576496813445, 1.5790787614434523, 1.57021683571682, 1.5615930032638525, 1.5614560766592556, 1.5612855057477077, 1.5492884950825379, 1.537558139821462, 1.5303080123444368, 1.5230761796365058, 1.5187570412447489, 1.5144365887484423, 1.5144392501978508, 1.5144419116384673, 1.5152516248050298, 1.5160614090266484, 1.5165665821309153, 1.5170717376258966, 1.517405942051456, 1.5177400790583015, 1.5179784131135134, 1.5182166518203588, 1.5184014632006353, 1.5185861636506364, 1.5187432174352542, 1.5189001522210244, 1.5190440735394517, 1.5191878720542107, 1.5193249861287943, 1.5194619754395058, 1.5195958009570412, 1.5197295007763014, 1.5198620342871503, 1.5199944417469864, 1.520126823572906, 1.5202590793269146, 1.5203919497289462, 1.5205246942241304, 1.5206584092659918, 1.520791998669146, 1.5209267680614151, 1.521061412143497, 1.521197358934499, 1.521333180778937, 1.5214703774108502, 1.5216074494801723, 1.5217459395472117, 1.5218843054475675, 1.5220234514861628, 1.52217003967076, 1.5223233475833982, 1.522476525500692, 1.522631388399006, 1.5227861218108405, 1.5229424395706495, 1.5230986283203918, 1.5232563542132664, 1.523413951556904, 1.5235730570054886, 1.523732034355825, 1.5238925000499421, 1.5240528380898977, 1.5242146579215845, 1.5243763505404617, 1.5245394987109318, 1.52470252010102, 1.5248670006405278, 1.525031354832567, 1.5251972955707855, 1.5253631104338843, 1.525532186038876, 1.5257011367669961, 1.5258734685910849, 1.5260456765728374, 1.5262204476873449, 1.526395095735353, 1.5265728879019826, 1.5267505579596126, 1.5269329077448528, 1.5271151368599367, 1.5273007816298598, 1.5274863067690232, 1.527507027035886, 1.527515263545697, 1.528858574686019, 1.5302021259322132, 1.531171497121207, 1.532140997416628, 1.5328657954965703, 1.5335906499307397, 1.5335640233340468, 1.5335747913761828, 1.5329056382270747, 1.5322361938652962, 1.5318777103325034, 1.531519015813649, 1.5313553020761568, 1.5311914275755356, 1.531219369404115, 1.5312145220116222, 1.53222132256996, 1.5332282632323362, 1.5339947186404823, 1.534761251270514, 1.5353623753281624, 8.730742348638412, 8.730660249592455, 8.730578158938783, 8.73228095631019, 8.732289979488236, 8.733039865767955, 8.733789655458363, 8.734539349322127, 8.735284469347292, 8.73526496249214, 8.735246378876475, 8.735136725373202, 8.73491183254522, 8.726427702709508, 8.726425007882641, 8.72615700227457, 8.725887716900697, 8.725618575507497, 8.72534957660143, 8.725415787821428, 8.725395850177467, 8.72537755203456, 8.725445671461072, 8.725515556149086, 8.725498909028515, 8.725571340898018, 8.725556896885776, 8.725634766183473, 8.725625225001282, 8.725704925499139, 8.725696930350562, 8.725690353923058, 8.725771949460123, 8.725855319057809, 8.725850382395544, 8.72584694950497, 8.725932233178115, 8.725930373013297, 8.726017505770448, 8.726017218892949, 8.726106204074709, 8.726108441503728, 8.726200344630142, 8.726299946144978, 8.726309366982969, 8.726410823378263, 8.726421622027344, 8.72643395709016, 8.726537331051487, 8.72664247907778, 8.72665749906477, 8.726674002866396, 8.726781080361233, 8.726889966978222, 8.726908083586713, 8.72701883916322, 8.727037143281526, 8.731261281767729, 8.732084908016416, 8.731999930717299, 8.732027974217308, 8.732058405959263, 8.731975508629233, 8.731894459652251, 8.731927452731364, 8.731962787858844, 8.731883279067333, 8.73180702503673, 8.731844695685288, 8.731884324891036, 8.731810408934592, 8.731738176794185, 8.731779811195095, 8.731709441960485, 8.731752862860187, 8.731800039004868, 8.731733367617029, 8.731783675001513, 8.731720034735886, 8.731657831842458, 8.731709592610208, 8.7316488412683, 8.731701841823659, 8.731755870720646, 8.731696577839898, 8.731638454624788, 8.731693520431369, 8.73174934196369, 8.731692549263363, 8.731636876824824, 8.73169345989543, 8.731639012783473, 8.731696148666725, 8.731642927088853, 8.731700470455262, 8.731758215757578, 8.731706048686684, 8.731763921363292, 8.731712625471987, 8.731660861682654, 8.73171748726516, 8.731670122871336, 8.731730810077048, 8.731794577086692, 8.731750514644878, 8.731708156045391, 8.731774211441708, 8.731842462651176, 8.731801949605687, 8.731763161900961, 8.73183373312349, 8.731906507613658, 8.731869499956948, 8.731944542093528, 8.731909414203152, 8.731986736252564, 8.731953196276336, 8.732032789250857, 8.732001329391597, 8.731972210119425, 8.732054128601915, 8.732026768803856, 8.732110978225094, 8.732197430015802, 8.732171883268192, 8.732149592223022, 8.732240224686697, 8.732220845103267, 8.732315086484046, 8.73241157751514, 8.732393997225321, 8.732378120213767, 8.732476975253379, 8.732462878267977, 8.73256404906489, 8.73266748196776, 8.732655279523378, 8.73276103355886, 8.732750587150159, 8.73285866638467, 8.732849892003035, 8.732842697904035, 8.732953148410838, 8.733065789274708, 8.733059102560045, 8.733054088893216, 8.733167955132458, 8.733164655060095, 8.73328086837837, 8.733399382735824, 8.73339784178088, 8.733518711329614, 8.733518846982903, 8.733520591112207, 8.733643869448358, 8.73376946344141, 8.733772949890175, 8.73377814735961, 8.73390615808718, 8.734036493007732, 8.7340434718618, 8.734052072202521, 8.734184833341665, 8.734319929209999, 8.734330239175414, 8.734342121142594, 8.734479649479624, 8.734619520938194, 8.734633068022001, 8.734776335520314, 8.734792400489187, 8.734813548006443, 8.734963240167275, 8.735115269015942, 8.735138054560979, 8.735292507343308, 8.735316908656293, 8.735476556743498, 8.735504991032581, 8.735534947919408, 8.735697028214293, 8.735861457446767, 8.735893063116364, 8.736059891800943, 8.736092939094494, 8.736127647005103, 8.73629690604441, 8.736468525063774, 8.736504578574152, 8.736541047317395, 8.736713858464757, 8.736889043928812, 8.736927001570887, 8.737104602520997, 8.737143904398698, 8.737184561666938, 8.737364623698987, 8.737547072372877, 8.73758916025989, 8.737632578085384, 8.737817494615404, 8.734453198993771, 8.733950662259652, 8.734188943961742, 8.734348125213101, 8.734507823070205, 8.734747215312114, 8.734907438389628, 8.73514792524009, 8.735308609528241, 8.735550192637792, 8.735792856780186, 8.735953997976665, 8.736115541428566, 8.73635932024772, 8.736600783685288, 8.737047783664499, 8.737199742327471, 8.737446104972692, 8.737693543244404, 8.737845864479834, 8.738094396308005, 8.738247035107163, 8.73839994457901, 8.738649587466554, 8.738802751241957, 8.739053489601131, 8.739305308251904, 8.739458706654508, 8.739612429761909, 8.73986553954433, 8.740021463871322, 8.740278063566919, 8.740535744184072, 8.740691730708592, 8.74095050816285, 8.741106284317746, 8.741261070674392, 8.741519747099098, 8.741779507371442, 8.741934227283796, 8.7420887783, 8.742349653711507, 8.742611615497589, 8.742765946079013, 8.742919933981835, 8.743183013170842, 8.743336567592399, 8.74360075060876, 8.743887853610259, 8.744174954266054, 8.744462066779429, 8.74474917694698, 8.745036298977062, 8.745321668388817, 8.744367621393398, 8.744370398495834, 8.744610558041924, 8.744829587868887, 8.745033977686584, 8.745234203765218, 8.744861603163397, 8.744865862311718, 8.745243036568462, 8.745620186083991, 8.745997327868201, 8.74637444490954, 8.746751554150155, 8.74712863864625, 8.747505715250298, 8.74788276710818, 8.748259810952197, 8.748636830048419, 8.749013840964016, 8.749390827130213, 8.749575122087277, 8.749926025605964]}, "gravity": [9.80665, 9.805883752572774, 9.803585130033337, 9.799754491589697, 9.794392435859498, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.79321032700094, 9.792219154502513, 9.791183966138172, 9.79011295257601, 9.782983508369435, 9.774432736741135, 9.764568337318183, 9.753391635819384, 9.74090413432942, 9.727107511096996, 9.712003620309279, 9.69559449184271, 9.677882330990203, 9.658869518164764, 9.63855860857957, 9.616952331904582, 9.594053591899671, 9.569865466024384, 9.544391205024347, 9.517634232494379, 9.489598144418387, 9.460286708686082, 9.429703864586601, 9.397853722279084, 9.364740562240293, 9.330368834689342, 9.294743158989611, 9.257868323027933, 9.219749282571133, 9.180391160599989, 9.139799246620738, 9.09797899595421, 9.05493602900264, 9.01067613049434, 8.965205248706251, 8.918529494664533, 8.870655141323281, 8.821429163745865, 8.770983286763645, 8.71934981474775, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653, 8.714358184615653], "volume": {"diff": -0.2773143387337029, "final": 87.6902745390789, "start": 87.9675888778126}, "strain": {"m_ds": [2072, 2085.37, 2098.7400000000002, 2112.11, 2112.31, 2130.84, 2149.37, 2167.9, 2168.1, 2188.0091176470587, 2207.9182352941175, 2227.8273529411763, 2247.736470588235, 2267.645588235294, 2287.554705882353, 2307.463823529412, 2327.3729411764707, 2347.2820588235295, 2367.1911764705883, 2387.100294117647, 2407.009411764706, 2426.9185294117647, 2446.8276470588235, 2466.7367647058823, 2486.645882352941, 2506.5550000000003, 2526.4641176470586, 2546.373235294118, 2566.2823529411767, 2586.1914705882355, 2606.1005882352943, 2626.009705882353, 2645.918823529412, 2665.8279411764706, 2685.7370588235294, 2705.646176470588, 2725.5552941176475, 2745.464411764706, 2765.373529411765, 2785.282647058824, 2805.1917647058826, 2825.1008823529414, 2845.01, 2845.21, 2863.9433333333336, 2882.6766666666667, 2901.4100000000003, 2901.61, 2917.8433333333332, 2934.076666666667, 2950.31, 2950.5099999999998, 2967.0066666666667, 2983.503333333333, 3000, 3005.21, 3005.41, 3022.0325, 3038.6549999999997, 3055.2775, 3071.9, 3072.1, 3091.995238095238, 3111.890476190476, 3131.785714285714, 3151.6809523809525, 3171.5761904761903, 3191.4714285714285, 3211.366666666667, 3231.2619047619046, 3251.157142857143, 3271.052380952381, 3290.947619047619, 3310.842857142857, 3330.7380952380954, 3350.633333333333, 3370.5285714285715, 3390.4238095238097, 3410.3190476190475, 3430.214285714286, 3450.109523809524, 3470.004761904762, 3489.9, 3490.1, 3510.0267605633803, 3529.9535211267603, 3549.8802816901407, 3569.807042253521, 3589.7338028169015, 3609.6605633802815, 3629.587323943662, 3649.5140845070423, 3669.4408450704223, 3689.3676056338027, 3709.294366197183, 3729.221126760563, 3749.1478873239435, 3769.074647887324, 3789.001408450704, 3808.9281690140842, 3828.8549295774646, 3848.781690140845, 3868.708450704225, 3888.6352112676054, 3908.561971830986, 3928.488732394366, 3948.415492957746, 3968.3422535211266, 3988.269014084507, 4008.195774647887, 4028.1225352112674, 4048.049295774648, 4067.976056338028, 4087.902816901408, 4107.829577464789, 4127.756338028169, 4147.683098591549, 4167.609859154929, 4187.536619718309, 4207.46338028169, 4227.39014084507, 4247.316901408451, 4267.243661971831, 4287.170422535211, 4307.097183098591, 4327.023943661971, 4346.950704225352, 4366.877464788732, 4386.804225352113, 4406.730985915493, 4426.657746478873, 4446.584507042253, 4466.511267605633, 4486.438028169014, 4506.364788732394, 4526.2915492957745, 4546.218309859155, 4566.145070422535, 4586.071830985915, 4605.998591549295, 4625.925352112676, 4645.852112676056, 4665.7788732394365, 4685.705633802816, 4705.632394366197, 4725.559154929577, 4745.485915492957, 4765.412676056338, 4785.339436619718, 4805.2661971830985, 4825.192957746478, 4845.119718309859, 4865.046478873239, 4884.973239436619, 4904.9, 4905.1, 4924.369615384616, 4943.639230769231, 4962.908846153847, 4982.178461538462, 5001.448076923077, 5020.717692307692, 5039.987307692308, 5059.256923076923, 5078.526538461539, 5097.796153846154, 5117.06576923077, 5136.335384615385, 5155.605, 5174.874615384615, 5194.1442307692305, 5213.413846153846, 5232.683461538461, 5251.953076923077, 5271.222692307692, 5290.492307692308, 5309.761923076923, 5329.031538461538, 5348.301153846153, 5367.570769230769, 5386.840384615384, 5406.11, 5406.31, 5423.605, 5440.9, 5441.1, 5458.811428571429, 5476.522857142857, 5494.234285714286, 5511.9457142857145, 5529.657142857143, 5547.368571428571, 5565.08], "outer": [-0.001245977542202627, -0.0011813753981601929, -0.0011328296940552984, -0.0010969999914349998, -0.0010936878526706722, -0.0010433054045533843, -0.0010164825614964632, -0.0010046504394546675, -0.0010294143973940603, -0.0010465646399958782, -0.0010621446896104207, -0.0010768432662179527, -0.0010910480563663572, -0.0011049776215568867, -0.001118767298407116, -0.0011324903029317223, -0.0011461790863640468, -0.0011598514964324747, -0.0011735180648079423, -0.0011871846036845377, -0.001200854394133952, -0.0012145292571324143, -0.0012282102685302178, -0.0012418980530665717, -0.0012555929800089508, -0.001269295257262484, -0.0012830015019920035, -0.0012967157283016912, -0.0013104388679663584, -0.0013241703792672946, -0.0013379100033334612, -0.0013516575726794165, -0.0013654129506688445, -0.00137917612879516, -0.0013929466057942537, -0.0014067248238414654, -0.0014205116669995937, -0.0014343171831068427, -0.0014481404358060797, -0.0014619770969538913, -0.0014758319652771212, -0.00148971202805964, -0.0015036099177567059, -0.001510096138633142, -0.0015292012474249234, -0.0015463680089594389, -0.0015622671526014258, -0.0015564148104224216, -0.0015634251843420896, -0.0015720728520630194, -0.0015817467650657926, -0.0015879195966458158, -0.0016038256592732934, -0.0016184876720170783, -0.0016322939914708739, -0.0016282365577269284, -0.0016229520396851098, -0.0016284985955834466, -0.0016340510803520255, -0.0016396097039086653, -0.0016451747570899358, -0.0008452837861016666, -0.0008519256734940638, -0.0008585764202452954, -0.0008652366004956468, -0.0008719064257964839, -0.0008785850808235789, -0.0008852764646882325, -0.0008919974431983428, -0.0008987270686024167, -0.0009054649807791381, -0.0009122117088710231, -0.0009189672626649424, -0.0009257316515015243, -0.0009325048843661391, -0.0009392929137389024, -0.0009461244841173156, -0.0009529637077755048, -0.0009598119833983381, -0.0009666757049195898, -0.0009735481569955712, -0.0009804293616720932, -0.0009873193531564576, -0.001013852573635378, -0.001020113223284639, -0.0010263851408827, -0.0010326677611852833, -0.001038957060652572, -0.001045260247037652, -0.0010515636039685385, -0.0010578604395379424, -0.0010641477470245781, -0.0010704329495805067, -0.001076708788311725, -0.0010829621706745728, -0.0010891891451768306, -0.0010953857551450168, -0.0011015476151533536, -0.0011076713263694765, -0.0011137530181158264, -0.001119789465966678, -0.0011257772708970421, -0.0011317115659014209, -0.0011375882910112352, -0.0011434036618542622, -0.001149177346129788, -0.0011549313891467288, -0.0011606956775470447, -0.001166470295845708, -0.0011722552455763766, -0.0011780501288761183, -0.0011838559542334587, -0.0011896708868947656, -0.0011954980374517764, -0.0012013394181886385, -0.0012071910061840336, -0.0012130527896897837, -0.0012189345940455598, -0.0012248339003484187, -0.001230743349999491, -0.001236663028672648, -0.0012425930829744402, -0.0012485339065898492, -0.0012544849684349292, -0.0012604457427097652, -0.0012664159825369558, -0.0012723962364327253, -0.0012783865469745631, -0.0012843868493376022, -0.0012903971180725934, -0.001296417158207887, -0.0013024468574607418, -0.0013084864409378574, -0.0013145363386555743, -0.0013205963846929444, -0.0013266661832262202, -0.0013327456916143784, -0.0013388346448763686, -0.0013449330430764436, -0.0013510466014437074, -0.0013571918903454998, -0.0013633464925020685, -0.0013695105554620952, -0.0013756994361441301, -0.0013818974697385347, -0.0013881049237324502, -0.0013943207563921088, -0.0014005466259943231, -0.0014067814646325815, -0.0014130249755474312, -0.0014192769252990621, -0.0014255366556845748, -0.0014318044917229441, -0.0014380804164299623, -0.001444364288322525, 0.00019211308633781927, 0.00018868838356428228, 0.00018526288642518236, 0.00018183662086319403, 0.00017840979259672245, 0.00017498246739460372, 0.00017155471583372474, 0.0001672058729855411, 0.0001638104443859243, 0.00016041484699981338, 0.000157019171109347, 0.00015362351451028694, 0.00015022798335982755, 0.00014683269325839135, 0.00014343724775551744, 0.0001400356307113594, 0.00013663480779860178, 0.000133234796283547, 0.00012983577104508308, 0.00012643795513575656, 0.00012304158267280793, 0.00011964691764985709, 0.00011625425973380638, 0.00011286395164022266, 0.0001094763886570462, 0.00010609203115219776, 0.00010271142131859267, 0.00010236355976423753, 9.908155254981227e-05, 9.58052817297911e-05, 9.059852265238651e-05, 8.693108584072908e-05, 8.327267715482921e-05, 7.962515617789914e-05, 7.599102420005163e-05, 7.237380941873589e-05, 6.87788301367407e-05, 6.52149454175059e-05], "inner": [0.0001440396139614909, 0.00015882361468661107, 0.00017016840029313788, 0.00017879241320477193, -8.480217298019476e-05, -6.904009718544137e-05, -5.9662456016419544e-05, -5.435470047142018e-05, -5.436481953996616e-05, -5.608170358693105e-05, -5.736662617727875e-05, -5.84039078633154e-05, -5.9305071541261144e-05, -6.0133116576350544e-05, -6.096292208597953e-05, -6.178264870475899e-05, -6.259876266389501e-05, -6.34164878362362e-05, -6.423879160091209e-05, -6.506737208597968e-05, -6.590315361893612e-05, -6.674663757428234e-05, -6.759822652471054e-05, -6.845811598634398e-05, -6.93264217990952e-05, -7.020321851701288e-05, -7.108774085317834e-05, -7.198107017790801e-05, -7.288341623523718e-05, -7.379462885311419e-05, -7.471462257393341e-05, -7.564339779050282e-05, -7.658093890576968e-05, -7.752725012628902e-05, -7.84823103788467e-05, -7.944630652725903e-05, -8.042361817505697e-05, -8.143626295677641e-05, -8.246078842043974e-05, -8.349596297514694e-05, -8.456815157608234e-05, -8.566396998191156e-05, -8.677173466211177e-05, 0.00012996357488374616, 0.00012745191304739105, 0.00012537593575479987, 0.0001235826270916178, -8.973468545686028e-05, -8.941118687709503e-05, -8.956470804219636e-05, -9.001904000858281e-05, 0.00012004735806516419, 0.00011801262964950042, 0.00011625698796979974, 0.00011469172320992054, 0.00011245053475987532, -8.974892389975884e-05, -9.461870885177554e-05, -9.949577875037203e-05, -0.00010438015967020485, -0.00010927188956378492, -0.00010913903758638405, -0.00011502314801798796, -0.00012091772291118459, -0.0001268227817247319, -0.00013273837471598684, -0.00013866450745816472, -0.00014460559089008351, -0.00015057963606027495, -0.0001565643744623397, -0.00016255978153243062, -0.0001685659606103149, -0.00017458293960898193, -0.00018061074691726263, -0.0001866494109270864, -0.00019270555306272977, -0.00019880925753711141, -0.00020492385395804087, -0.00021104934159803593, -0.0002171856324827431, -0.00022333291000038453, -0.00022949121786662965, -0.0002356605344221844, -0.00024083656779693547, -0.00024651432550815123, -0.0002522065751234151, -0.0002579131646639069, -0.00026363276834825587, -0.000269359777710626, -0.0002750860645442336, -0.0002808073323633117, -0.0002865191780536242, -0.00029223083980429467, -0.0002979345002942392, -0.0003036157167531214, -0.00030927014613955407, -0.00031489345902865125, -0.00032048132119204395, -0.00032602946314120424, -0.00033153360848386807, -0.00033698951927950784, -0.00034239293507029415, -0.00034773966822349933, -0.00035302553531102075, -0.0003582463305553831, -0.00036342406743760075, -0.0003685823742647712, -0.0003737541090509405, -0.0003789393941106612, -0.0003841382671533409, -0.00038935074907557143, -0.00039457687929810655, -0.0003998167374380192, -0.00040507027532249863, -0.00041033748396673733, -0.0004156185004780519, -0.00042091338037403584, -0.0004262335843477691, -0.0004315759507425512, -0.00043693231596583706, -0.00044230272343993577, -0.000447687220886163, -0.0004530858141466684, -0.0004584985462605725, -0.00046392544810570886, -0.0004693664887959482, -0.0004748217853458983, -0.00048029138485609164, -0.0004857753251377178, -0.000491273642849714, -0.0004967863655553249, -0.000502313523069248, -0.0005078551621655982, -0.0005134113095193443, -0.000518982004991065, -0.0005245672921054812, -0.0005301672057320974, -0.000535781767362376, -0.0005414110151699796, -0.000547061291442236, -0.0005527513942362288, -0.0005584561584610744, -0.0005641758610652236, -0.0005699280018407963, -0.0005756949460119044, -0.000581476712963089, -0.0005872733631462461, -0.0005930848401142733, -0.0005989112153311717, -0.0006047525488653712, -0.0006106088727341417, -0.0006164802004642303, -0.0006223665811773134, -0.0006282680503451694, -0.0006341846390132081, -0.0006310572264796495, -0.0006371503058053818, -0.0006432503097583021, -0.0006493572488179963, -0.0006554711377412341, -0.0006615919875851536, -0.0006677198093660527, -0.0006738327970691495, -0.0006799768418037423, -0.000686127833010481, -0.0006922857814089875, -0.0006984506976833191, -0.0007046225924853255, -0.0007108014764417676, -0.0007169884815651634, -0.0007231976761497628, -0.0007294139179480579, -0.0007356372153111398, -0.0007418675782941087, -0.0007481050177475361, -0.0007543495441178892, -0.000760601162931542, -0.0007668598852386019, -0.0007731257229779264, -0.0007793986885387505, -0.0007856787949375962, -0.0007919660559702131, -0.0006166713459645286, -0.0006215149925026205, -0.0006263646359842642, -0.0006264170755088106, -0.0006313904333294415, -0.0006363700972932939, -0.0006413561011104072, -0.0006463484891344196, -0.0006513473236639648, -0.000656352697451193, -0.0006613647723529101]}, "leakage_bbl": {"60.0": "gaslift"}, "radius outer": {"start": [5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 5.3555, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.578, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005, 4.3420000000000005], "final": [5.348827167272734, 5.349000155663944, 5.349173144055153, 5.349303137314321, 5.3494331305734875, 5.349529073559679, 5.34962501654587, 5.349633885625447, 5.349642754705022, 5.349777666305468, 5.349912577905915, 5.349984402773911, 5.350056227641907, 5.350087911106704, 5.350119594571501, 5.350053282883128, 5.349986971194757, 5.3499410471326305, 5.349895123070503, 5.349853403592647, 5.349811684114792, 5.349772325001281, 5.34973296588777, 5.34969492901095, 5.3496568921341305, 5.349619592240941, 5.349582292347752, 5.349545367040567, 5.349508441733382, 5.349471694958015, 5.349434948182649, 5.349398293042814, 5.349361637902978, 5.349325026606916, 5.3492884153108555, 5.34925181965739, 5.349215224003922, 5.349178628429445, 5.349142032854968, 5.349105428573592, 5.349068824292216, 5.349032206427822, 5.348995588563428, 5.348958954235158, 5.348922319906887, 5.348885667441844, 5.348849014976802, 5.348812343386182, 5.348775671795562, 5.348738980522647, 5.348702289249731, 5.348665587352906, 5.3486288854560815, 5.3485921621865815, 5.348555438917081, 5.3485186917798435, 5.348481944642606, 5.348445175088221, 5.348408405533835, 5.348371614255491, 5.348334822977148, 5.348298010423332, 5.348261197869515, 5.3482243644061045, 5.348187530942694, 5.348150676592466, 5.348113822242238, 5.348076948347453, 5.348040074452669, 5.348003179829294, 5.347966285205918, 5.3479293674866515, 5.347892449767383, 5.3478554820466275, 5.347818514325872, 5.3477814991109565, 5.347744483896041, 5.347707432776652, 5.347670381657264, 5.347633281783612, 5.347596181909959, 5.347559014571844, 5.347521847233728, 5.347484632159592, 5.347447417085455, 5.347430048607503, 5.34741268012955, 5.3473615214244825, 5.3473103627194165, 5.347264394423717, 5.347218426128018, 5.3471758521961315, 5.347133278264244, 5.347148949373513, 5.347164620482783, 5.34714584845402, 5.347127076425257, 5.347103920133017, 5.3470807638407765, 5.347054859520234, 5.34702895519969, 5.347012425899927, 5.346995896600164, 5.346953304140963, 5.346910711681763, 5.346871450477137, 5.346832189272512, 5.346795219400595, 5.346758249528678, 5.346769114321886, 5.346779979115094, 5.34679412973328, 5.346808280351467, 5.34679342806141, 5.346778575771354, 5.346763707605264, 5.346748839439175, 5.346733954834946, 5.3467190702307175, 5.346704168409561, 5.346689266588405, 4.960409778707816, 4.5741302908272266, 4.574115087546986, 4.574099884266745, 4.574084660707431, 4.5740694371481165, 4.574054191995524, 4.574038946842931, 4.574023679612817, 4.574008412382704, 4.573993124941347, 4.57397783749999, 4.573962520922324, 4.573947204344657, 4.573931820024848, 4.573916435705039, 4.573901031592489, 4.573885627479939, 4.5738702043989665, 4.573854781317993, 4.5738393380573905, 4.573823894796789, 4.573808431334155, 4.57379296787152, 4.573777484185473, 4.573762000499426, 4.573746496569399, 4.573730992639372, 4.573715454840138, 4.573699917040903, 4.573684279576307, 4.573668642111711, 4.5736529871287575, 4.573637332145804, 4.573621656442904, 4.573605980740003, 4.573590269681441, 4.573574558622878, 4.573558827580077, 4.573543096537275, 4.57352734545977, 4.573511594382266, 4.573495823191758, 4.5734800520012495, 4.573419317459574, 4.573358582917898, 4.57334425229085, 4.573329921663803, 4.573315565244421, 4.57330120882504, 4.573286827907166, 4.573272446989294, 4.5732580507828136, 4.573243654576332, 4.573229226582697, 4.573214798589062, 4.573200370205047, 4.573185941821032, 4.573171528364414, 4.573157114907795, 4.5731427232609585, 4.573128331614122, 4.573113944785471, 4.573099557956821, 4.573085192561965, 4.573070827167109, 4.573056513174881, 4.573042199182652, 4.5730279456380165, 4.57301369209338, 4.572999508053163, 4.572985324012946, 4.572971219515387, 4.572957115017828, 4.572943097842854, 4.572929080667881, 4.572915159675474, 4.572901238683066, 4.572887421253935, 4.572873603824805, 4.572859897739319, 4.572846191653833, 4.572832608052569, 4.572819024451303, 4.572805572627527, 4.572792120803751, 4.572778809419892, 4.5727654980360315, 4.572752282072725, 4.572739066109419, 4.572725895104953, 4.572712724100486, 4.572699529644338, 4.572686335188189, 4.572673117086905, 4.572659898985619, 4.572646657235685, 4.572633415485751, 4.572620150997879, 4.5726068865100045, 4.572593596975762, 4.57258030744152, 4.572566997060657, 4.572553686679796, 4.57254034833217, 4.572527009984546, 4.572513639064039, 4.572500268143532, 4.572486873858611, 4.57247347957369, 4.5724600619512445, 4.5724466443288, 4.57243318087863, 4.57241971742846, 4.572406213916333, 4.5723927104042055, 4.572379183673954, 4.572365656943703, 4.57235210679922, 4.572338556654737, 4.572324982760439, 4.572311408866144, 4.572297810320888, 4.5722842117756315, 4.572270589795068, 4.572256967814505, 4.57224332360219, 4.572229679389875, 4.572216013510911, 4.572202347631946, 4.572188658830778, 4.572174970029612, 4.572161258208781, 4.572147546387951, 4.572133811695841, 4.572120077003732, 4.572106319498599, 4.572092561993464, 4.572078782121594, 4.572065002249724, 4.572051200268135, 4.572037398286545, 4.572023573679966, 4.572009749073387, 4.5719959008575115, 4.571982052641635, 4.571968181196256, 4.5719543097508755, 4.571940415982033, 4.571926522213191, 4.571912606218491, 4.57189869022379, 4.571884752609773, 4.571870814995756, 4.5718568557622765, 4.571842896528796, 4.571828902593693, 4.571814908658591, 4.571800842092294, 4.571786775525998, 4.571772687641662, 4.5717585997573265, 4.57174449021721, 4.571730380677095, 4.571716214329213, 4.571702047981333, 4.571687860682435, 4.571673673383537, 4.571659464521345, 4.571645255659154, 4.571631027618196, 4.571616799577237, 4.571602548561717, 4.5715882975461986, 4.5715740260005555, 4.5715597544549125, 4.571545463058428, 4.5715311716619444, 4.571516860948963, 4.571502550235981, 4.571488221713128, 4.5714738931902765, 4.5714595461135845, 4.5714451990368925, 4.571430833445238, 4.571416467853584, 4.571402084070821, 4.57138770028806, 4.575133596998658, 4.578879493709255, 4.578871654564606, 4.5788638154199575, 4.578855974457006, 4.578848133494055, 4.578840290772184, 4.578832448050313, 4.578824604040411, 4.5788167600305085, 4.578808914883121, 4.578801069735733, 4.5787932236124105, 4.578785377489087, 4.578775422987807, 4.578765468486528, 4.578757696350464, 4.5787499242143985, 4.578742151691982, 4.578734379169565, 4.578726606467452, 4.578718833765339, 4.578711061107383, 4.578703288449429, 4.578695516078625, 4.578687743707821, 4.578679971888779, 4.578672200069737, 4.5786644278949815, 4.578656655720225, 4.578648869418811, 4.578641083117397, 4.57863329863375, 4.578625514150103, 4.578617731523744, 4.578609948897386, 4.578602168528615, 4.5785943881598445, 4.578586610559228, 4.578578832958612, 4.578571058662043, 4.578563284365476, 4.578555513977239, 4.578547743589001, 4.578539977795031, 4.578532212001061, 4.578524451585835, 4.578516691170608, 4.578508937038941, 4.578501182907273, 4.578493436112944, 4.578485689318615, 4.578477951102706, 4.5784702128867965, 4.578469416631699, 4.578468620376602, 4.578461107862087, 4.578453595347574, 4.578446095963666, 4.578438596579759, 4.460415987682558, 4.342393378785357, 4.342385416780039, 4.34237745477472, 4.342369512369464, 4.342361569964207, 4.342353651196166, 4.342345732428125, 4.342337842727601, 4.342329953027077, 4.342322100053787, 4.3423142470804965, 4.342306442380475, 4.342298637680454, 4.342290900486728, 4.342283163293003]}, "leakage_mass": {"60.0": "gaslift"}, "pressure": {"apb": 1800.170000000001, "diff": [1800.170000000001, 1791.6428833225264, 1783.1157666450517, 1774.5653716016272, 1766.0149765582037, 1757.4487302654707, 1748.8824839727367, 1748.7541987590503, 1748.6259135453624, 1736.7211972018285, 1724.816480858296, 1712.8854900241686, 1700.9544991900411, 1689.0090264352284, 1677.063553680417, 1676.9345724890522, 1676.8055912976847, 1663.9695172953143, 1651.133443292943, 1638.3033505711496, 1625.4732578493554, 1612.6483557058227, 1599.82345356229, 1587.0032973603957, 1574.1831411585026, 1561.3674813289244, 1548.5518214993463, 1535.7405205894447, 1522.9292196795423, 1510.122210032635, 1497.3152003857263, 1484.5124477721479, 1471.7096951585695, 1458.9111852382603, 1446.1126753179506, 1433.3184005362764, 1420.5241257546013, 1407.7340822009637, 1394.9440386473261, 1382.158225362727, 1369.3724120781271, 1356.5908297539104, 1343.8092474296946, 1331.0318976923018, 1318.2545479549067, 1305.4814329855453, 1292.7083180161844, 1279.9394403193492, 1267.170562622514, 1254.4059248952321, 1241.6412871679513, 1228.8809036174398, 1216.1205200669287, 1203.3644248999294, 1190.6083297329296, 1177.856528948807, 1165.1047281646847, 1152.357225163967, 1139.609722163249, 1126.8665201047852, 1114.1233180463223, 1101.384419969374, 1088.6455218924234, 1075.9109307533427, 1063.1763396142628, 1050.4460583245004, 1037.7157770347371, 1024.9898084684692, 1012.2638399021989, 999.542186852178, 986.8205338021553, 974.1032018914748, 961.3858699807952, 948.6728677610963, 935.9598655413984, 923.2512030362595, 910.5425405311234, 897.8382255317201, 885.1339105323168, 872.4339496959583, 859.733988859597, 847.0383941746231, 834.3427994896501, 821.651582650662, 808.9603658116748, 808.8329109583683, 808.7054561050627, 796.7714148764426, 784.8373736478216, 772.9102831163354, 760.9831925848503, 749.062083763295, 737.1409749417398, 737.0137186691209, 736.8864623965028, 726.5574985934254, 716.2285347903471, 705.9006830344188, 695.5728312784895, 685.2467735535383, 674.9207158285881, 674.7935229671111, 674.6663301056324, 664.1780689727539, 653.6898078398763, 643.2065731330922, 632.7233384263072, 622.2445687604959, 611.7657990946855, 611.1139649153956, 610.4621307361058, 610.4575002683196, 610.4528698005342, 610.0691629346011, 609.6854560686688, 609.3043809937808, 608.9233059188955, 608.5448648297934, 608.1664237406922, 607.7906187114932, 607.4148136822942, 607.4103168514448, 607.4058200205964, 606.960576861452, 606.5153337023066, 606.0738746420002, 605.632415581691, 605.1947464422292, 604.7570773027664, 604.3232008160894, 603.8893243294115, 603.4592439501221, 603.0291635708336, 602.602883388241, 602.1766032056466, 601.7541355638559, 601.3316679220643, 600.9130215570995, 600.4943751921364, 600.0795537407375, 599.6647322893396, 599.2537393986968, 598.842746508054, 598.4355858333174, 598.0284251585799, 597.6251003622892, 597.2217755659995, 596.822290317994, 596.4228050699876, 596.0271636857988, 595.6315223016109, 595.2397421732803, 594.8479620449498, 594.4600551575313, 594.072148270111, 593.6881195065607, 593.3040907430104, 592.9239438167278, 592.5437968904462, 592.1675354441204, 591.7912739977965, 591.4189016979099, 591.0465293980214, 590.6780500351233, 590.3095706722243, 590.3059583091836, 590.3023459461419, 589.9456824235667, 589.5890189009906, 589.2359510526894, 588.88288320439, 588.5334226092018, 588.1839620140145, 587.8381756380659, 587.4923892621136, 587.1505095124066, 586.8086297626996, 586.4709946300609, 586.133359497423, 585.8001319798495, 585.4669044622742, 585.1382381244002, 584.8095717865262, 584.4856132639479, 584.1616547413696, 583.8425503067001, 583.5234458720324, 583.2093246707382, 582.8952034694439, 582.5861853168753, 582.277167164304, 581.9733634523991, 581.6695597404942, 581.3710736757921, 581.0725876110891, 580.7795140951048, 580.4864405791195, 580.1988661759551, 579.9112917727898, 579.6292948644332, 579.3472979560765, 579.0709482731636, 578.7945985902506, 578.5239586197276, 578.2533186492055, 577.9884440074484, 577.7235693656894, 577.4645104809788, 577.2054515962682, 576.952259845777, 576.6990680952886, 576.45040711818, 576.2017461410696, 575.9560299707837, 575.7103138004995, 575.4675231315141, 575.2247324625305, 574.9848718800358, 574.7450112975412, 574.5080855044607, 574.2711597113803, 574.0371733029906, 573.8031868945991, 573.5721444809615, 573.341102067322, 573.1130089733106, 572.8849158793009, 572.6597767165285, 572.434637553758, 572.2124569259167, 571.9902762980755, 571.7710588175705, 571.5518413370655, 571.3355931286242, 571.1193449201855, 570.9060776492342, 570.6928103782848, 570.4825292693204, 570.272248160355, 570.0649578095445, 569.8576674587348, 569.6533723463035, 569.4490772338704, 569.2477817313093, 569.0464862287463, 568.8481944537725, 568.6499026787978, 568.4546194178556, 568.2593361569125, 568.0670664349682, 567.8747967130239, 567.6855479576498, 567.4962992022765, 567.3100735474154, 567.1238478925561, 566.9406496912152, 566.7574514898752, 566.5772853890858, 566.3971192882973, 566.2199899527723, 566.0428606172472, 565.8687728920222, 565.694685166799, 565.5236437402345, 565.352602313671, 565.1846117356481, 565.0166211576261, 564.8516855562993, 564.6867499549726, 564.5248739399931, 564.3629979250127, 564.2041861513517, 564.0453743776898, 563.8896315280126, 563.7338886783355, 563.5812195940971, 563.4285505098569, 563.2789603199226, 563.1293701299883, 562.9828724043855, 562.8363746787836, 562.6929786886094, 562.5495826984334, 562.4092930113884, 562.2690033243416, 562.1318285731786, 561.9946538220147, 561.8606024413084, 561.7265510606021, 561.5956273194897, 561.4647035783792, 561.3369120039843, 561.2091204295903, 561.0844659479171, 560.959811466244, 560.838301154221, 560.716790842197, 560.5984281778565, 560.4800655135168, 560.3648533239402, 560.2496411343636, 560.137583969542, 560.0255268047213, 559.9166292912132, 559.8077317777052, 559.7019982788206, 559.5962647799361, 559.493699622587, 559.3911344652379, 559.390076304926, 559.3890181446131, 559.2878246851442, 559.186631225677, 559.0886490729108, 558.9906669201455, 558.8958967472863, 558.801126574428, 558.709569295137, 558.6180120158479, 558.5296685798212, 558.4413251437945, 558.3561964730688, 558.2710678023423, 558.1880784337327, 558.1050890651231, 558.0251420660306, 557.945195066939, 557.8685110845872, 557.7918271022363, 557.7184069351997, 557.6449867681631, 557.5748311709722, 557.5046755737812, 557.4377852531279, 557.3708949324755, 557.3072705457553, 557.2436461590369, 557.1832883870075, 557.1229306149799, 557.0658441198166, 557.0087576246497, 556.9549467591787, 556.9011358937087, 556.8506038871701, 556.8000718806306, 556.7528173572246, 556.7055628338157, 556.6615844634216, 556.6176060930229, 556.576903895937, 556.5362016988502, 556.4987755698903, 556.4613494409323, 556.4271991321102, 556.3930488232891, 556.3621739229184, 556.331299022545, 556.3036989297634, 556.2760988369837, 556.2517727302884, 556.2274466235931, 556.2063934213593, 556.1853402191236, 556.1851402998846, 556.1849403806473, 556.1691247152112, 556.1533090497742, 556.1403542796434, 556.1273995095116, 556.1272667901449, 556.1271340707799, 556.1169011707289, 556.1066682706751, 556.0994269826224, 556.0921856945688, 556.0879319439036, 556.0836781932403, 556.0824068926486, 556.0811355920587, 556.0828402458974, 556.0845448997397, 556.0892169367689, 556.0938889737981, 556.1015164934897, 556.1091440131822], "final": [4978.170000000001, 4980.010471269048, 4981.850942538096, 4983.6599332970645, 4985.468924056033, 4987.253904624058, 4989.0388851920825, 4989.065426407149, 4989.091967622215, 4991.530252615735, 4993.968537609257, 4996.377250273594, 4998.785962937932, 5001.176897526255, 5003.567832114579, 5003.593570211366, 5003.619308308151, 5006.18293655635, 5008.746564804548, 5011.312373328877, 5013.878181853203, 5016.445382036986, 5019.01258222077, 5021.580731512299, 5024.148880803829, 5026.717731717968, 5029.286582632107, 5031.8559997996745, 5034.425416967241, 5036.995334814287, 5039.565252661331, 5042.135638780327, 5044.706024899324, 5047.276863115225, 5049.847701331125, 5052.418984600034, 5054.990267868942, 5057.561994371499, 5060.133720874056, 5062.705891741772, 5065.278062609487, 5067.850680623487, 5070.423298637487, 5072.996367513265, 5075.569436389042, 5078.142960396133, 5080.716484403224, 5083.290468133721, 5085.8644518642195, 5088.438900102025, 5091.013348339832, 5093.5882773783105, 5096.163206416789, 5098.738652548107, 5101.314098679424, 5103.890069987645, 5106.466041295866, 5109.042543265492, 5111.619045235119, 5114.196083108256, 5116.773120981393, 5119.350699879829, 5121.928278778265, 5124.506403740165, 5127.084528702065, 5129.663204719964, 5132.241880737863, 5134.821112766305, 5137.400344794746, 5139.98013770613, 5142.5599306175145, 5145.140289395149, 5147.720648172784, 5150.301580561934, 5152.882512951084, 5155.464031044873, 5158.045549138663, 5160.627662816357, 5163.20977649405, 5165.792494500325, 5168.375212506599, 5170.9585489164465, 5173.5418853262945, 5176.125853920239, 5178.709822514185, 5178.735797810467, 5178.761773106749, 5181.197347932048, 5183.632922757345, 5186.072135574532, 5188.5113483917185, 5190.953231949591, 5193.395115507465, 5193.421182933868, 5193.447250360272, 5195.561802554548, 5197.6763547488235, 5199.789535211164, 5201.902715673503, 5204.015207516314, 5206.1276993591255, 5206.153738037673, 5206.17977671622, 5208.329267104136, 5210.478757492053, 5212.630712819548, 5214.7826681470415, 5216.936528212382, 5219.090388277724, 5222.4276768327945, 5225.764965387864, 5225.913463143526, 5226.06196089919, 5238.403809119354, 5250.745657339519, 5263.087540644536, 5275.429423949553, 5287.771345743683, 5300.113267537814, 5312.455231104351, 5324.797194670889, 5324.945700772874, 5325.09420687486, 5339.86723694902, 5354.640267023177, 5369.413365852496, 5384.186464681813, 5398.959637428489, 5413.732810175166, 5428.5060616529145, 5443.279313130663, 5458.052648875143, 5472.825984619624, 5487.599410800492, 5502.372836981359, 5517.1463680223505, 5531.919899063341, 5546.6935457794, 5561.467192495459, 5576.240960601532, 5591.014728707606, 5605.788623928379, 5620.562519149151, 5635.336547216557, 5650.110575283962, 5664.884741936617, 5679.658908589273, 5694.43321957238, 5709.207530555486, 5723.981992259231, 5738.7564539629775, 5753.53108585335, 5768.305717743724, 5783.080533879018, 5797.85535001431, 5812.630357350012, 5827.405364685712, 5842.180569007046, 5856.955773328381, 5871.731180349156, 5886.506587369931, 5901.282202827039, 5916.057818284146, 5930.833647531152, 5945.609476778157, 5945.758086259865, 5945.9066957415735, 5960.714608497667, 5975.522521253758, 5990.330338177649, 6005.138155101538, 6019.945634234331, 6034.753113367123, 6049.557690772977, 6064.36226817883, 6079.154026970471, 6093.94578576211, 6108.709664587311, 6123.473543412511, 6138.201585562278, 6152.929627712042, 6167.613921943836, 6182.298216175632, 6196.930876004848, 6211.563535834064, 6226.13671033319, 6240.7098848323185, 6255.215746068648, 6269.721607304977, 6284.152362306237, 6298.583117307496, 6312.931013101902, 6327.27890889631, 6341.536236846727, 6355.793564797144, 6369.952664538517, 6384.111764279888, 6398.1650277029585, 6412.218291126029, 6426.158166505974, 6440.098041885919, 6453.917037341927, 6467.736032797935, 6481.426721583414, 6495.1174103688945, 6508.672434733808, 6522.227459098719, 6535.639491967894, 6549.051524837069, 6562.31290339797, 6575.574281958872, 6588.7516235162375, 6601.928965073601, 6615.105077415266, 6628.281189756932, 6641.457336817963, 6654.633483878994, 6667.8096717130575, 6680.9858595471205, 6694.162094325176, 6707.338329103232, 6720.514616888152, 6733.690904673071, 6746.86725154207, 6760.043598411068, 6773.220011155737, 6786.396423900407, 6799.572908598631, 6812.7493932968555, 6825.92595601816, 6839.102518739466, 6852.279165561655, 6865.455812383841, 6878.632550896593, 6891.809289409346, 6904.986132742606, 6918.162976075869, 6931.339930918215, 6944.516885760559, 6957.693958171796, 6970.871030583036, 6984.048226506596, 6997.225422430153, 7010.402747700289, 7023.580072970426, 7036.757533167189, 7049.934993363949, 7063.11259473567, 7076.290196107392, 7089.46794484564, 7102.64569358389, 7115.823595365236, 7129.001497146581, 7142.179555012449, 7155.35761287832, 7168.535832649633, 7181.714052420945, 7194.892440212209, 7208.070828003475, 7221.249389946442, 7234.427951889407, 7247.606694295713, 7260.785436702019, 7273.964365726187, 7287.143294750356, 7300.322416407997, 7313.501538065636, 7326.68085795019, 7339.8601778347465, 7353.039702020724, 7366.219226206699, 7379.398960813487, 7392.578695420275, 7405.758646594525, 7418.938597768774, 7432.118771815487, 7445.298945862198, 7458.479349373353, 7471.65975288451, 7484.840400892817, 7498.021048901123, 7511.201952139921, 7524.382855378719, 7537.564019877523, 7550.745184376324, 7563.926620229262, 7577.108056082199, 7590.289773184795, 7603.47149028739, 7616.65349436929, 7629.835498451191, 7643.0177954996, 7656.2000925480115, 7669.382688780324, 7682.565285012635, 7695.748186307758, 7708.931087602882, 7722.1142977598865, 7735.297507916889, 7748.481031228914, 7761.664554540939, 7774.848397023608, 7788.032239506278, 7801.216407251341, 7814.400574996405, 7827.585073831936, 7840.769572667469, 7853.954408384713, 7867.139244101955, 7867.271533972684, 7867.403823843412, 7880.149120020892, 7892.894416198373, 7905.640278601352, 7918.386141004333, 7931.132571629043, 7943.879002253754, 7956.626003336504, 7969.373004419256, 7982.120578232016, 7994.868152044773, 8007.6163008314725, 8020.364449618171, 8033.112099237146, 8045.85974885612, 8058.607803695913, 8071.355858535707, 8084.104540564308, 8096.85322259291, 8109.602533929289, 8122.351845265667, 8135.101787984366, 8147.851730703066, 8160.602306830421, 8173.352882957777, 8186.10409447045, 8198.855305983125, 8211.607154880767, 8224.35900377841, 8237.111496041713, 8249.863988305013, 8262.617129323686, 8275.37027034236, 8288.12406172921, 8300.877853116059, 8313.63229441449, 8326.38673571292, 8339.141826916757, 8351.89691812059, 8364.652660573698, 8377.408403026806, 8390.164797947195, 8402.921192867585, 8415.678241330086, 8428.435289792586, 8441.192992707955, 8453.950695623322, 8466.70905371277, 8479.467411802218, 8492.226425565936, 8504.985439329654, 8517.745109007341, 8530.504778685026, 8530.637216610352, 8530.76965453568, 8542.22263092811, 8553.67560732054, 8565.129338509207, 8576.583069697872, 8576.715525831418, 8576.847981964964, 8588.578322894957, 8600.308663824948, 8612.039789663228, 8623.770915501507, 8635.502823198112, 8647.23473089472, 8658.967416386718, 8670.70010187872, 8682.43355969459, 8694.167017510461, 8705.901240102812, 8717.635462695163, 8729.37043918706, 8741.105415678956], "start": [3178, 3188.367587946522, 3198.7351758930445, 3209.0945616954373, 3219.453947497829, 3229.8051743585875, 3240.1564012193458, 3240.311227648099, 3240.4660540768523, 3254.809055413906, 3269.1520567509606, 3283.491760249425, 3297.8314637478907, 3312.1678710910264, 3326.5042784341617, 3326.6589977223134, 3326.813717010466, 3342.2134192610356, 3357.613121511605, 3373.009022757727, 3388.404924003848, 3403.7970263311636, 3419.18912865848, 3434.5774341519036, 3449.9657396453267, 3465.350250389043, 3480.7347611327605, 3496.1154792102298, 3511.496197287699, 3526.873124781652, 3542.250052275605, 3557.623191008179, 3572.9963297407544, 3588.3656778769646, 3603.7350260131743, 3619.100584063757, 3634.466142114341, 3649.8279121705355, 3665.18968222673, 3680.5476663790446, 3695.90565053136, 3711.259850869577, 3726.6140512077927, 3741.964469820963, 3757.314888434135, 3772.661527410588, 3788.0081663870396, 3803.351027814372, 3818.6938892417056, 3834.0329752067933, 3849.372061171881, 3864.7073737608707, 3880.04268634986, 3895.3742276481776, 3910.7057689464946, 3926.033541038838, 3941.361313131181, 3956.685318101525, 3972.0093230718703, 3987.329563003471, 4002.6498029350705, 4017.9662799104553, 4033.2827568858415, 4048.5954729868226, 4063.908189087802, 4079.2171463954633, 4094.5261037031255, 4109.831304297836, 4125.136504892547, 4140.437950853952, 4155.739396815359, 4171.037087503674, 4186.334778191989, 4201.628712800838, 4216.922647409686, 4232.2128280086135, 4247.503008607539, 4262.789437284637, 4278.075865961733, 4293.358544804367, 4308.641223647002, 4323.920154741823, 4339.199085836644, 4354.474271269577, 4369.7494567025105, 4369.902886852099, 4370.056317001687, 4384.425933055605, 4398.795549109524, 4413.161852458196, 4427.528155806868, 4441.891148186296, 4456.254140565725, 4456.407464264747, 4456.560787963769, 4469.004303961123, 4481.447819958476, 4493.888852176745, 4506.329884395013, 4518.768433962776, 4531.206983530537, 4531.360215070562, 4531.513446610587, 4544.151198131382, 4556.788949652177, 4569.424139686455, 4582.059329720734, 4594.691959451886, 4607.324589183038, 4611.313711917399, 4615.3028346517585, 4615.455962875207, 4615.609091098656, 4628.334646184753, 4641.0602012708505, 4653.783159650755, 4666.5061180306575, 4679.22648091389, 4691.946843797122, 4704.664612392858, 4717.382380988595, 4717.5353839214295, 4717.688386854264, 4732.906660087568, 4748.124933320871, 4763.339491210496, 4778.554049100122, 4793.76489098626, 4808.9757328724, 4824.182860836825, 4839.389988801251, 4854.593404925021, 4869.796821048791, 4884.9965274122505, 4900.196233775712, 4915.392232458495, 4930.588231141277, 4945.7805242223, 4960.972817303323, 4976.161406860794, 4991.3499964182665, 5006.534884529682, 5021.719772641097, 5036.9009613832395, 5052.082150125382, 5067.259641574327, 5082.437133023273, 5097.610929254386, 5112.784725485499, 5127.954828573433, 5143.124931661367, 5158.29134368007, 5173.457755698774, 5188.6204787214865, 5203.783201744199, 5218.942237843451, 5234.1012739427015, 5249.256625190318, 5264.411976437935, 5279.563644905035, 5294.715313372135, 5309.8633011291295, 5325.011288886125, 5340.155597496028, 5355.299906105933, 5355.452127950682, 5355.6043497954315, 5370.7689260741, 5385.933502352767, 5401.094387124959, 5416.255271897148, 5431.412211625129, 5446.569151353108, 5461.7195151349115, 5476.8698789167165, 5492.003517458064, 5507.13715599941, 5522.23866995725, 5537.340183915088, 5552.401453582428, 5567.462723249768, 5582.475683819436, 5597.4886443891055, 5612.4452627409, 5627.401881092695, 5642.29416002649, 5657.186438960286, 5672.006421397909, 5686.826403835533, 5701.566176989361, 5716.305950143192, 5730.957649649503, 5745.609349155816, 5760.165163170935, 5774.720977186055, 5789.173150443412, 5803.625323700769, 5817.966161527003, 5832.306999353239, 5846.528871641541, 5860.750743929842, 5874.846089068764, 5888.941434207684, 5902.902762963687, 5916.864091719689, 5930.683990726359, 5944.50388973303, 5958.174981486915, 5971.846073240801, 5985.360643552193, 5998.875213863584, 6012.3012163980575, 6025.727218932531, 6039.149047444483, 6052.570875956432, 6065.9898136864485, 6079.408751416464, 6092.824799833022, 6106.240848249579, 6119.654008820716, 6133.067169391852, 6146.477443585161, 6159.887717778472, 6173.295107061109, 6186.702496343746, 6200.107002182426, 6213.511508021106, 6226.913131882103, 6240.3147557430975, 6253.713499092243, 6267.112242441391, 6280.508106744084, 6293.903971046775, 6307.296957767969, 6320.689944489161, 6334.080055093372, 6347.470165697584, 6360.857401648895, 6374.2446376002035, 6387.629000362252, 6401.013363124302, 6414.394854160292, 6427.776345196283, 6441.15496596898, 6454.53358674168, 6467.909338713416, 6481.285090685151, 6494.657975317815, 6508.03085995048, 6521.400878410672, 6534.770896870866, 6548.138047407586, 6561.505197944304, 6574.8694814650335, 6588.233764985764, 6601.595182958418, 6614.95660093107, 6628.3151548231235, 6641.673708715178, 6655.029399993669, 6668.38509127216, 6681.737921403691, 6695.09075153522, 6708.440721985952, 6721.790692436685, 6735.1378046723485, 6748.48491690801, 6761.829172393891, 6775.173427879774, 6788.514828080731, 6801.8562282816865, 6815.194774662135, 6828.533321042585, 6841.8690150665125, 6855.204709090439, 6868.53755222139, 6881.870395352341, 6895.200389053431, 6908.530382754522, 6921.857528488432, 6935.18467422234, 6948.508973451311, 6961.8332726802855, 6975.154726866134, 6988.476181051982, 7001.794791656083, 7015.113402260185, 7028.429170743487, 7041.744939226788, 7055.0578670498, 7068.3707948728115, 7081.6808834956155, 7094.990972118421, 7108.298222832407, 7121.605473546391, 7134.909885153537, 7148.214296760685, 7161.51586958203, 7174.817442403372, 7188.1161779049735, 7201.414913406576, 7214.710813054066, 7228.006712701556, 7241.299777960127, 7254.5928432187, 7267.883075553115, 7281.173307887533, 7294.460708762126, 7307.748109636717, 7307.881457667758, 7308.014805698799, 7320.861295335748, 7333.707784972696, 7346.5516295284415, 7359.395474084187, 7372.236674881757, 7385.077875679326, 7397.916434041367, 7410.754992403408, 7423.590909652195, 7436.426826900978, 7449.260104358404, 7462.093381815829, 7474.924020803413, 7487.754659790997, 7500.582661629883, 7513.410663468768, 7526.236029479721, 7539.061395490674, 7551.8841269940895, 7564.706858497504, 7577.526956813394, 7590.347055129285, 7603.164521577293, 7615.981988025302, 7628.796823924695, 7641.611659824088, 7654.423866493759, 7667.236073163431, 7680.045651921896, 7692.855230680363, 7705.662182564507, 7718.469134448652, 7731.2734578420395, 7744.077781235428, 7756.879477057266, 7769.681172879104, 7782.480242453335, 7795.279312027567, 7808.075756677761, 7820.872201327956, 7833.666022377304, 7846.459843426653, 7859.251042197976, 7872.0422409692965, 7884.830818785036, 7897.619396600777, 7910.405354783006, 7923.191312965234, 7935.974652835647, 7948.757992706061, 7961.538715585982, 7974.319438465903, 7974.452076310467, 7974.584714155032, 7986.053506212899, 7997.5222982707655, 8008.988984229563, 8020.45567018836, 8020.588259041273, 8020.720847894184, 8032.461421724228, 8044.201995554273, 8055.940362680605, 8067.6787298069385, 8079.414891254209, 8091.151052701479, 8102.88500949407, 8114.618966286661, 8126.350719448692, 8138.082472610721, 8149.812023166043, 8161.541573721365, 8173.26892269357, 8184.996271665774]}, "salt_results": [], "radius inner": {"start": [2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 3.3124999999999996, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75, 2.75], "final": [2.750396108938394, 2.750416436939391, 2.750436764940388, 2.750452364020597, 2.7504679631008058, 2.7504798211185593, 2.750491679136313, 3.031355385969158, 3.3122190928020028, 3.3122451987400376, 3.312271304678073, 3.312286836396259, 3.3123023681144454, 3.312311159084567, 3.312319950054688, 3.312319933294981, 3.312319916535274, 3.312317072946071, 3.312314229356868, 3.3123121012038275, 3.3123099730507874, 3.312308255052995, 3.312306537055203, 3.312305044502861, 3.312303551950519, 3.3123021805009296, 3.31230080905134, 3.312299434685965, 3.31229806032059, 3.3122967026483776, 3.3122953449761656, 3.3122939932874207, 3.3122926415986758, 3.312291287241359, 3.312289932884042, 3.3122885709434318, 3.3122872090028217, 3.312285836666393, 3.312284464329965, 3.312283080066801, 3.3122816958036365, 3.3122802987833353, 3.3122789017630345, 3.3122774913188358, 3.3122760808746365, 3.3122746566827157, 3.3122732324907953, 3.3122717943592925, 3.31227035622779, 3.3122689040332256, 3.312267451838662, 3.312265986848543, 3.3122645218584235, 3.3122630422817294, 3.3122615627050354, 3.312260068194378, 3.312258573683721, 3.3122570644878224, 3.312255555291924, 3.3122540315523237, 3.3122525078127234, 3.312250969528771, 3.3122494312448185, 3.312247878442346, 3.3122463256398746, 3.3122447583119152, 3.3122431909839563, 3.312241609165413, 3.3122400273468697, 3.312238430728249, 3.312236834109628, 3.3122352154372114, 3.312233596764795, 3.312231919571875, 3.3122302423789556, 3.3122285455086566, 3.3122268486383573, 3.3122251341305007, 3.3122234196226445, 3.3122216438102745, 3.312219867997904, 3.312218053048669, 3.312216238099435, 3.3122144033641834, 3.3122125686289317, 3.0312849842299308, 2.75035739983093, 2.7503539462959052, 2.7503504927608806, 2.7503476382921033, 2.7503447838233264, 2.7503423180239137, 2.7503398522245015, 3.0312713030394627, 3.312202753854424, 3.312203289648947, 3.3122038254434694, 3.31220357117404, 3.31220331690461, 3.3122025644172903, 3.3122018119299708, 3.031265971082325, 2.750330130234679, 2.750327332483108, 2.7503245347315364, 2.7503221207242263, 2.750319706716917, 2.7503175544778724, 2.7503154022388276, 2.7503123206047086, 2.7503092389705897, 3.031255972830086, 3.312202706689582, 3.3121946411082552, 3.3121865755269284, 3.3121784978799087, 3.312170420232889, 3.3121623304769905, 3.312154240721092, 3.312146138793456, 3.3121380368658198, 3.312138256901907, 3.312138476937995, 3.312128731380092, 3.31211898582219, 3.312109222932523, 3.3120994600428566, 3.3120896797891968, 3.3120798995355365, 3.3120701018346446, 3.312060304133753, 3.3120504889763986, 3.3120406738190447, 3.3120308338996103, 3.312020993980176, 3.312011099467863, 3.3120012049555503, 3.311991292732572, 3.311981380509593, 3.3119714506166336, 3.3119615207236737, 3.3119515729895754, 3.311941625255478, 3.3119316596340114, 3.3119216940125447, 3.311911710456691, 3.3119017269008366, 3.3118917253635702, 3.3118817238263043, 3.3118716933408914, 3.3118616628554793, 3.311851553594944, 3.3118414443344077, 3.311831317034086, 3.3118211897337635, 3.31181104439486, 3.3118008990559566, 3.3117907358241787, 3.3117805725924008, 3.3117703911640115, 3.311760209735623, 3.3117500100382196, 3.3117398103408164, 3.3117295924102716, 3.3117193744797264, 3.3117108016744496, 3.311702228869172, 3.311692825082963, 3.311683421296754, 3.311673993508329, 3.3116645657199033, 3.3116551141809767, 3.3116456626420505, 3.311636189548448, 3.311626716454846, 3.31161723109559, 3.3116077457363335, 3.3115982615737654, 3.311588777411197, 3.311579301561372, 3.3115698257115462, 3.311560365467122, 3.311550905222697, 3.3115414452829226, 3.311531985343148, 3.3115225386554616, 3.311513091967775, 3.3115036824530146, 3.3114942729382553, 3.311484907789584, 3.3114755426409124, 3.31146622902894, 3.3114569154169673, 3.311447660520259, 3.3114384056235515, 3.311429216513448, 3.311420027403345, 3.311410911162621, 3.3114017949218972, 3.311392758569642, 3.3113837222173865, 3.311374772809983, 3.3113658234025793, 3.311356967875794, 3.3113481123490094, 3.3113393576316454, 3.3113306029142824, 3.3113219559721587, 3.311313309030035, 3.3113047334033237, 3.3112961577766127, 3.31128761433093, 3.3112790708852478, 3.3112705051995084, 3.3112619395137686, 3.3112533513853877, 3.311244763257008, 3.3112361526235317, 3.3112275419900543, 3.3112189088168704, 3.3112102756436874, 3.311201619865506, 3.3111929640873243, 3.3111842855722804, 3.3111756070572365, 3.3111669058851154, 3.311158204712994, 3.3111494808986768, 3.31114075708436, 3.3111320104007635, 3.311123263717166, 3.3111144940723385, 3.311105724427511, 3.311096912839679, 3.3110881012518476, 3.3110792529575064, 3.311070404663165, 3.311061533183264, 3.311052661703363, 3.3110437669659842, 3.311034872228605, 3.3110259541547093, 3.311017036080814, 3.3110080946607265, 3.3109991532406386, 3.310990188403075, 3.310981223565512, 3.3109722352593307, 3.31096324695315, 3.3109542352295067, 3.310945223505863, 3.3109361881709525, 3.3109271528360416, 3.310918093811853, 3.3109090347876644, 3.3108999520115723, 3.310890869235481, 3.310881762646771, 3.3108726560580597, 3.3108635256110786, 3.310854395164098, 3.310845240809465, 3.3108360864548327, 3.3108269081150796, 3.310817729775326, 3.3108085274062713, 3.310799325037217, 3.3107900985728422, 3.3107808721084666, 3.3107716214766834, 3.3107623708449005, 3.3107530959879568, 3.310743821131012, 3.310734522013312, 3.310725222895612, 3.3107158994539305, 3.310706576012249, 3.3106972177421734, 3.3106878594720976, 3.3106784352393444, 3.310669011006592, 3.310659562490845, 3.3106501139750972, 3.310640640717659, 3.3106311674602207, 3.310621640477062, 3.310612113493902, 3.310602561992619, 3.3105930104913353, 3.3105834344398226, 3.3105738583883095, 3.310564257686444, 3.3105546569845776, 3.3105450317258494, 3.3105354064671215, 3.3105257565331683, 3.310516106599215, 3.3105064318905493, 3.310496757181883, 3.3104870576454757, 3.310477358109068, 3.310467633722515, 3.310457909335962, 3.3104481600179056, 3.3104384106998497, 3.3104286363915403, 3.310418862083231, 3.3104090627332496, 3.310399263383269, 3.3104044431602775, 3.310409622937286, 3.3103995312746526, 3.3103894396120195, 3.3103793364804726, 3.310369233348925, 3.310359118731108, 3.31034900411329, 3.3103388779847607, 3.310328751856232, 3.310318614198678, 3.3103084765411235, 3.3102983273362994, 3.310288178131475, 3.310278053495592, 3.3102679288597083, 3.310257752785616, 3.3102475767115247, 3.3102373891323382, 3.3102272015531526, 3.3102170024511173, 3.3102068033490823, 3.3101965927065033, 3.3101863820639235, 3.310176159863158, 3.3101659376623926, 3.3101557038858394, 3.3101454701092865, 3.310135222882051, 3.3101249756548152, 3.3101146916762847, 3.3101044076977537, 3.3100941120472753, 3.3100838163967974, 3.3100735090605395, 3.3100632017242817, 3.310052882685591, 3.3100425636469004, 3.3100322328878056, 3.3100219021287107, 3.3100115596319104, 3.310001217135109, 3.3099908628914494, 3.3099805086477887, 3.3099701426389676, 3.309959776630147, 3.3099493988363915, 3.309939021042635, 3.3099286314434253, 3.3099182418442155, 3.309907840417992, 3.309897438991769, 3.3098870257156836, 3.3098766124395986, 3.029090383119098, 2.7483041537985975, 2.7482974937846074, 2.748290833770618, 2.7482841655108303, 2.7482774972510433, 2.748277425146697, 2.7482773530423508, 2.748270514675347, 2.7482636763083437, 2.7482568292703933, 2.748249982232443, 2.7482431264771945, 2.7482362707219465, 2.7482294061884134, 2.7482225416548802, 2.7482156682574024, 2.748208794859924, 2.7482019124709662, 2.748195030082009, 2.748188138479019, 2.748181246876029]}}}, "temperature_field": {"md": [2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2072, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2085.37, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2098.7400000000002, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.11, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2112.31, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2130.84, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2149.37, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2167.9, 2168.1, 2168.1, 2168.1, 2168.1, 2168.1, 2168.1, 2168.1, 2168.1, 2168.1, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2188.0091176470587, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2207.9182352941175, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2227.8273529411763, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2247.736470588235, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2267.645588235294, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2287.554705882353, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2307.463823529412, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2327.3729411764707, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2347.2820588235295, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2367.1911764705883, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2387.100294117647, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2407.009411764706, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2426.9185294117647, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2446.8276470588235, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2466.7367647058823, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2486.645882352941, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2506.5550000000003, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2526.4641176470586, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2546.373235294118, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2566.2823529411767, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2586.1914705882355, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2606.1005882352943, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2626.009705882353, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2645.918823529412, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2665.8279411764706, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2685.7370588235294, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2705.646176470588, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2725.5552941176475, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2745.464411764706, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2765.373529411765, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2785.282647058824, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2805.1917647058826, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2825.1008823529414, 2845.01, 2845.01, 2845.01, 2845.01, 2845.01, 2845.01, 2845.01, 2845.01, 2845.01, 2845.21, 2845.21, 2845.21, 2845.21, 2845.21, 2845.21, 2845.21, 2845.21, 2845.21, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2863.9433333333336, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2882.6766666666667, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.4100000000003, 2901.61, 2901.61, 2901.61, 2901.61, 2901.61, 2901.61, 2901.61, 2901.61, 2901.61, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2917.8433333333332, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2934.076666666667, 2950.31, 2950.31, 2950.31, 2950.31, 2950.31, 2950.31, 2950.31, 2950.31, 2950.31, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2950.5099999999998, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2967.0066666666667, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 2983.503333333333, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3005.21, 3005.21, 3005.21, 3005.21, 3005.21, 3005.21, 3005.21, 3005.21, 3005.41, 3005.41, 3005.41, 3005.41, 3005.41, 3005.41, 3005.41, 3005.41, 3022.0325, 3022.0325, 3022.0325, 3022.0325, 3022.0325, 3022.0325, 3022.0325, 3022.0325, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3038.6549999999997, 3055.2775, 3055.2775, 3055.2775, 3055.2775, 3055.2775, 3055.2775, 3055.2775, 3055.2775, 3071.9, 3071.9, 3071.9, 3071.9, 3071.9, 3071.9, 3071.9, 3071.9, 3072.1, 3072.1, 3072.1, 3072.1, 3072.1, 3072.1, 3072.1, 3072.1, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3091.995238095238, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3111.890476190476, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3131.785714285714, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3151.6809523809525, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3171.5761904761903, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3191.4714285714285, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3211.366666666667, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3231.2619047619046, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3251.157142857143, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3271.052380952381, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3290.947619047619, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3310.842857142857, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3330.7380952380954, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3350.633333333333, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3370.5285714285715, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3390.4238095238097, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3410.3190476190475, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3430.214285714286, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3450.109523809524, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3470.004761904762, 3489.9, 3489.9, 3489.9, 3489.9, 3489.9, 3489.9, 3489.9, 3489.9, 3490.1, 3490.1, 3490.1, 3490.1, 3490.1, 3490.1, 3510.0267605633803, 3510.0267605633803, 3510.0267605633803, 3510.0267605633803, 3510.0267605633803, 3510.0267605633803, 3529.9535211267603, 3529.9535211267603, 3529.9535211267603, 3529.9535211267603, 3529.9535211267603, 3529.9535211267603, 3549.8802816901407, 3549.8802816901407, 3549.8802816901407, 3549.8802816901407, 3549.8802816901407, 3549.8802816901407, 3569.807042253521, 3569.807042253521, 3569.807042253521, 3569.807042253521, 3569.807042253521, 3569.807042253521, 3589.7338028169015, 3589.7338028169015, 3589.7338028169015, 3589.7338028169015, 3589.7338028169015, 3589.7338028169015, 3609.6605633802815, 3609.6605633802815, 3609.6605633802815, 3609.6605633802815, 3609.6605633802815, 3609.6605633802815, 3629.587323943662, 3629.587323943662, 3629.587323943662, 3629.587323943662, 3629.587323943662, 3629.587323943662, 3649.5140845070423, 3649.5140845070423, 3649.5140845070423, 3649.5140845070423, 3649.5140845070423, 3649.5140845070423, 3669.4408450704223, 3669.4408450704223, 3669.4408450704223, 3669.4408450704223, 3669.4408450704223, 3669.4408450704223, 3689.3676056338027, 3689.3676056338027, 3689.3676056338027, 3689.3676056338027, 3689.3676056338027, 3689.3676056338027, 3709.294366197183, 3709.294366197183, 3709.294366197183, 3709.294366197183, 3709.294366197183, 3709.294366197183, 3729.221126760563, 3729.221126760563, 3729.221126760563, 3729.221126760563, 3729.221126760563, 3729.221126760563, 3749.1478873239435, 3749.1478873239435, 3749.1478873239435, 3749.1478873239435, 3749.1478873239435, 3749.1478873239435, 3769.074647887324, 3769.074647887324, 3769.074647887324, 3769.074647887324, 3769.074647887324, 3769.074647887324, 3789.001408450704, 3789.001408450704, 3789.001408450704, 3789.001408450704, 3789.001408450704, 3789.001408450704, 3808.9281690140842, 3808.9281690140842, 3808.9281690140842, 3808.9281690140842, 3808.9281690140842, 3808.9281690140842, 3828.8549295774646, 3828.8549295774646, 3828.8549295774646, 3828.8549295774646, 3828.8549295774646, 3828.8549295774646, 3848.781690140845, 3848.781690140845, 3848.781690140845, 3848.781690140845, 3848.781690140845, 3848.781690140845, 3868.708450704225, 3868.708450704225, 3868.708450704225, 3868.708450704225, 3868.708450704225, 3868.708450704225, 3888.6352112676054, 3888.6352112676054, 3888.6352112676054, 3888.6352112676054, 3888.6352112676054, 3888.6352112676054, 3908.561971830986, 3908.561971830986, 3908.561971830986, 3908.561971830986, 3908.561971830986, 3908.561971830986, 3928.488732394366, 3928.488732394366, 3928.488732394366, 3928.488732394366, 3928.488732394366, 3928.488732394366, 3948.415492957746, 3948.415492957746, 3948.415492957746, 3948.415492957746, 3948.415492957746, 3948.415492957746, 3968.3422535211266, 3968.3422535211266, 3968.3422535211266, 3968.3422535211266, 3968.3422535211266, 3968.3422535211266, 3988.269014084507, 3988.269014084507, 3988.269014084507, 3988.269014084507, 3988.269014084507, 3988.269014084507, 4008.195774647887, 4008.195774647887, 4008.195774647887, 4008.195774647887, 4008.195774647887, 4008.195774647887, 4028.1225352112674, 4028.1225352112674, 4028.1225352112674, 4028.1225352112674, 4028.1225352112674, 4028.1225352112674, 4048.049295774648, 4048.049295774648, 4048.049295774648, 4048.049295774648, 4048.049295774648, 4048.049295774648, 4067.976056338028, 4067.976056338028, 4067.976056338028, 4067.976056338028, 4067.976056338028, 4067.976056338028, 4087.902816901408, 4087.902816901408, 4087.902816901408, 4087.902816901408, 4087.902816901408, 4087.902816901408, 4107.829577464789, 4107.829577464789, 4107.829577464789, 4107.829577464789, 4107.829577464789, 4107.829577464789, 4127.756338028169, 4127.756338028169, 4127.756338028169, 4127.756338028169, 4127.756338028169, 4127.756338028169, 4147.683098591549, 4147.683098591549, 4147.683098591549, 4147.683098591549, 4147.683098591549, 4147.683098591549, 4167.609859154929, 4167.609859154929, 4167.609859154929, 4167.609859154929, 4167.609859154929, 4167.609859154929, 4187.536619718309, 4187.536619718309, 4187.536619718309, 4187.536619718309, 4187.536619718309, 4187.536619718309, 4207.46338028169, 4207.46338028169, 4207.46338028169, 4207.46338028169, 4207.46338028169, 4207.46338028169, 4227.39014084507, 4227.39014084507, 4227.39014084507, 4227.39014084507, 4227.39014084507, 4227.39014084507, 4247.316901408451, 4247.316901408451, 4247.316901408451, 4247.316901408451, 4247.316901408451, 4247.316901408451, 4267.243661971831, 4267.243661971831, 4267.243661971831, 4267.243661971831, 4267.243661971831, 4267.243661971831, 4287.170422535211, 4287.170422535211, 4287.170422535211, 4287.170422535211, 4287.170422535211, 4287.170422535211, 4307.097183098591, 4307.097183098591, 4307.097183098591, 4307.097183098591, 4307.097183098591, 4307.097183098591, 4327.023943661971, 4327.023943661971, 4327.023943661971, 4327.023943661971, 4327.023943661971, 4327.023943661971, 4346.950704225352, 4346.950704225352, 4346.950704225352, 4346.950704225352, 4346.950704225352, 4346.950704225352, 4366.877464788732, 4366.877464788732, 4366.877464788732, 4366.877464788732, 4366.877464788732, 4366.877464788732, 4386.804225352113, 4386.804225352113, 4386.804225352113, 4386.804225352113, 4386.804225352113, 4386.804225352113, 4406.730985915493, 4406.730985915493, 4406.730985915493, 4406.730985915493, 4406.730985915493, 4406.730985915493, 4426.657746478873, 4426.657746478873, 4426.657746478873, 4426.657746478873, 4426.657746478873, 4426.657746478873, 4446.584507042253, 4446.584507042253, 4446.584507042253, 4446.584507042253, 4446.584507042253, 4446.584507042253, 4466.511267605633, 4466.511267605633, 4466.511267605633, 4466.511267605633, 4466.511267605633, 4466.511267605633, 4486.438028169014, 4486.438028169014, 4486.438028169014, 4486.438028169014, 4486.438028169014, 4486.438028169014, 4506.364788732394, 4506.364788732394, 4506.364788732394, 4506.364788732394, 4506.364788732394, 4506.364788732394, 4526.2915492957745, 4526.2915492957745, 4526.2915492957745, 4526.2915492957745, 4526.2915492957745, 4526.2915492957745, 4546.218309859155, 4546.218309859155, 4546.218309859155, 4546.218309859155, 4546.218309859155, 4546.218309859155, 4566.145070422535, 4566.145070422535, 4566.145070422535, 4566.145070422535, 4566.145070422535, 4566.145070422535, 4586.071830985915, 4586.071830985915, 4586.071830985915, 4586.071830985915, 4586.071830985915, 4586.071830985915, 4605.998591549295, 4605.998591549295, 4605.998591549295, 4605.998591549295, 4605.998591549295, 4605.998591549295, 4625.925352112676, 4625.925352112676, 4625.925352112676, 4625.925352112676, 4625.925352112676, 4625.925352112676, 4645.852112676056, 4645.852112676056, 4645.852112676056, 4645.852112676056, 4645.852112676056, 4645.852112676056, 4665.7788732394365, 4665.7788732394365, 4665.7788732394365, 4665.7788732394365, 4665.7788732394365, 4665.7788732394365, 4685.705633802816, 4685.705633802816, 4685.705633802816, 4685.705633802816, 4685.705633802816, 4685.705633802816, 4705.632394366197, 4705.632394366197, 4705.632394366197, 4705.632394366197, 4705.632394366197, 4705.632394366197, 4725.559154929577, 4725.559154929577, 4725.559154929577, 4725.559154929577, 4725.559154929577, 4725.559154929577, 4745.485915492957, 4745.485915492957, 4745.485915492957, 4745.485915492957, 4745.485915492957, 4745.485915492957, 4765.412676056338, 4765.412676056338, 4765.412676056338, 4765.412676056338, 4765.412676056338, 4765.412676056338, 4785.339436619718, 4785.339436619718, 4785.339436619718, 4785.339436619718, 4785.339436619718, 4785.339436619718, 4805.2661971830985, 4805.2661971830985, 4805.2661971830985, 4805.2661971830985, 4805.2661971830985, 4805.2661971830985, 4825.192957746478, 4825.192957746478, 4825.192957746478, 4825.192957746478, 4825.192957746478, 4825.192957746478, 4845.119718309859, 4845.119718309859, 4845.119718309859, 4845.119718309859, 4845.119718309859, 4845.119718309859, 4865.046478873239, 4865.046478873239, 4865.046478873239, 4865.046478873239, 4865.046478873239, 4865.046478873239, 4884.973239436619, 4884.973239436619, 4884.973239436619, 4884.973239436619, 4884.973239436619, 4884.973239436619, 4904.9, 4904.9, 4904.9, 4904.9, 4904.9, 4904.9, 4905.1, 4905.1, 4905.1, 4905.1, 4905.1, 4905.1, 4924.369615384616, 4924.369615384616, 4924.369615384616, 4924.369615384616, 4924.369615384616, 4924.369615384616, 4943.639230769231, 4943.639230769231, 4943.639230769231, 4943.639230769231, 4943.639230769231, 4943.639230769231, 4962.908846153847, 4962.908846153847, 4962.908846153847, 4962.908846153847, 4962.908846153847, 4962.908846153847, 4982.178461538462, 4982.178461538462, 4982.178461538462, 4982.178461538462, 4982.178461538462, 4982.178461538462, 5001.448076923077, 5001.448076923077, 5001.448076923077, 5001.448076923077, 5001.448076923077, 5001.448076923077, 5020.717692307692, 5020.717692307692, 5020.717692307692, 5020.717692307692, 5020.717692307692, 5020.717692307692, 5039.987307692308, 5039.987307692308, 5039.987307692308, 5039.987307692308, 5039.987307692308, 5039.987307692308, 5059.256923076923, 5059.256923076923, 5059.256923076923, 5059.256923076923, 5059.256923076923, 5059.256923076923, 5078.526538461539, 5078.526538461539, 5078.526538461539, 5078.526538461539, 5078.526538461539, 5078.526538461539, 5097.796153846154, 5097.796153846154, 5097.796153846154, 5097.796153846154, 5097.796153846154, 5097.796153846154, 5117.06576923077, 5117.06576923077, 5117.06576923077, 5117.06576923077, 5117.06576923077, 5117.06576923077, 5136.335384615385, 5136.335384615385, 5136.335384615385, 5136.335384615385, 5136.335384615385, 5136.335384615385, 5155.605, 5155.605, 5155.605, 5155.605, 5155.605, 5155.605, 5174.874615384615, 5174.874615384615, 5174.874615384615, 5174.874615384615, 5174.874615384615, 5174.874615384615, 5194.1442307692305, 5194.1442307692305, 5194.1442307692305, 5194.1442307692305, 5194.1442307692305, 5194.1442307692305, 5213.413846153846, 5213.413846153846, 5213.413846153846, 5213.413846153846, 5213.413846153846, 5213.413846153846, 5232.683461538461, 5232.683461538461, 5232.683461538461, 5232.683461538461, 5232.683461538461, 5232.683461538461, 5251.953076923077, 5251.953076923077, 5251.953076923077, 5251.953076923077, 5251.953076923077, 5251.953076923077, 5271.222692307692, 5271.222692307692, 5271.222692307692, 5271.222692307692, 5271.222692307692, 5271.222692307692, 5290.492307692308, 5290.492307692308, 5290.492307692308, 5290.492307692308, 5290.492307692308, 5290.492307692308, 5309.761923076923, 5309.761923076923, 5309.761923076923, 5309.761923076923, 5309.761923076923, 5309.761923076923, 5329.031538461538, 5329.031538461538, 5329.031538461538, 5329.031538461538, 5329.031538461538, 5329.031538461538, 5348.301153846153, 5348.301153846153, 5348.301153846153, 5348.301153846153, 5348.301153846153, 5348.301153846153, 5367.570769230769, 5367.570769230769, 5367.570769230769, 5367.570769230769, 5367.570769230769, 5367.570769230769, 5386.840384615384, 5386.840384615384, 5386.840384615384, 5386.840384615384, 5386.840384615384, 5386.840384615384, 5406.11, 5406.11, 5406.11, 5406.11, 5406.11, 5406.11, 5406.31, 5406.31, 5406.31, 5406.31, 5406.31, 5406.31, 5423.605, 5423.605, 5423.605, 5423.605, 5423.605, 5423.605, 5440.9, 5440.9, 5440.9, 5440.9, 5440.9, 5440.9, 5441.1, 5441.1, 5441.1, 5441.1, 5441.1, 5441.1, 5458.811428571429, 5458.811428571429, 5458.811428571429, 5458.811428571429, 5458.811428571429, 5458.811428571429, 5476.522857142857, 5476.522857142857, 5476.522857142857, 5476.522857142857, 5476.522857142857, 5476.522857142857, 5494.234285714286, 5494.234285714286, 5494.234285714286, 5494.234285714286, 5494.234285714286, 5494.234285714286, 5511.9457142857145, 5511.9457142857145, 5511.9457142857145, 5511.9457142857145, 5511.9457142857145, 5511.9457142857145, 5529.657142857143, 5529.657142857143, 5529.657142857143, 5529.657142857143, 5529.657142857143, 5529.657142857143, 5547.368571428571, 5547.368571428571, 5547.368571428571, 5547.368571428571, 5547.368571428571, 5547.368571428571, 5565.08, 5565.08, 5565.08, 5565.08, 5565.08, 5565.08, 5565.280000000001, 5565.280000000001, 5565.280000000001, 5565.280000000001, 5579.153333333334, 5579.153333333334, 5579.153333333334, 5579.153333333334, 5593.026666666667, 5593.026666666667, 5593.026666666667, 5593.026666666667, 5606.9, 5606.9, 5606.9, 5606.9, 5607.1, 5607.1, 5607.1, 5607.1, 5626.621052631579, 5626.621052631579, 5626.621052631579, 5626.621052631579, 5646.142105263159, 5646.142105263159, 5646.142105263159, 5646.142105263159, 5665.663157894737, 5665.663157894737, 5665.663157894737, 5665.663157894737, 5685.184210526316, 5685.184210526316, 5685.184210526316, 5685.184210526316, 5704.705263157895, 5704.705263157895, 5704.705263157895, 5704.705263157895, 5724.226315789474, 5724.226315789474, 5724.226315789474, 5724.226315789474, 5743.747368421053, 5743.747368421053, 5743.747368421053, 5743.747368421053, 5763.268421052632, 5763.268421052632, 5763.268421052632, 5763.268421052632, 5782.789473684211, 5782.789473684211, 5782.789473684211, 5782.789473684211, 5802.3105263157895, 5802.3105263157895, 5802.3105263157895, 5802.3105263157895, 5821.831578947368, 5821.831578947368, 5821.831578947368, 5821.831578947368, 5841.352631578948, 5841.352631578948, 5841.352631578948, 5841.352631578948, 5860.873684210526, 5860.873684210526, 5860.873684210526, 5860.873684210526, 5880.394736842105, 5880.394736842105, 5880.394736842105, 5880.394736842105, 5899.9157894736845, 5899.9157894736845, 5899.9157894736845, 5899.9157894736845, 5919.436842105263, 5919.436842105263, 5919.436842105263, 5919.436842105263, 5938.957894736842, 5938.957894736842, 5938.957894736842, 5938.957894736842, 5958.478947368421, 5958.478947368421, 5958.478947368421, 5958.478947368421, 5978, 5978, 5978, 5978], "temperature": [357.51360284961197, 355.5745659472841, 353.2220413100626, 333.15247825806136, 332.36458407786705, 332.25195258635017, 330.6440390140663, 330.53237401215915, 300.007466923321, 299.9124704928659, 292.14946564859207, 357.7436455022178, 356.17811426259715, 354.27777487941336, 338.08263739974757, 337.2078456027141, 337.0824615917462, 335.36796997346676, 335.2436618813391, 301.2626212886776, 301.15686904019225, 292.5149104597181, 357.9284991495474, 356.6565824286292, 355.11225252603896, 341.9634097061858, 341.0217053373998, 340.8864493020491, 339.09258876398866, 338.95849335921275, 302.30197876722286, 302.18790018775235, 292.8655229066729, 358.0777939861217, 357.0363081632764, 355.77168695418663, 345.01304842117855, 344.0201933203725, 343.8773552388859, 342.0235806500728, 341.88196826061625, 303.1705998196553, 303.05012633846763, 293.2051646532049, 358.08069470449266, 356.41558311779664, 355.0156117902634, 345.0672932859493, 344.24300790922615, 344.099662940116, 342.2417873946687, 342.09967246718696, 303.2509295018562, 303.1300284980093, 293.250130126612, 358.32148622400166, 357.17011710800006, 356.2014780969467, 349.3273532580787, 348.44540126598133, 348.2916717454572, 346.24271161443664, 346.0903012452637, 304.4271813874549, 304.29752177353384, 293.70187932513295, 358.49654469843335, 357.67152310010624, 356.97726236159446, 352.0548105568043, 351.1377543906218, 350.9776651091369, 348.874069931528, 348.71535437443384, 305.3286391896777, 305.1936155822437, 294.15963342543483, 358.62980465227696, 358.01174960080556, 357.49164416309173, 353.80632144304167, 352.86925646331343, 352.7055126023294, 350.57018131451775, 350.40784253783244, 306.03067878375526, 305.8925728056408, 294.60670267356664, 358.63107846250165, 358.0129987917031, 357.49287303163686, 353.80740989953244, 351.29233398477237, 350.85303940039967, 346.3680676783699, 345.93254267606966, 325.23788178403424, 358.75906539088174, 358.11319770772593, 357.56974066989704, 353.71908349573494, 351.23938709266866, 350.8062742799887, 346.36804706698126, 345.93865079065796, 325.53520602886357, 358.8893737790472, 358.2295054679049, 357.6743349689121, 353.7409544690785, 351.28704083008444, 350.85840804919195, 346.45471791441054, 346.02976322677034, 325.83736759219954, 359.0214279126833, 358.355235390453, 357.794820807474, 353.82464404117025, 351.3911549437069, 350.9660523962527, 346.59006238062807, 346.16860763353105, 326.14251722208274, 359.1542245191831, 358.4860481208353, 357.92403746857116, 353.94296007698813, 351.52688250730654, 351.10477637422264, 346.75263825528583, 346.33415421035994, 326.4492214218222, 359.28719731493885, 358.61948746420774, 358.0579396240267, 354.0805738198677, 351.6802158666761, 351.2608066132241, 346.9303632152371, 346.5145529080481, 326.7566670065695, 359.4169440869978, 358.75138438174844, 358.19172321550826, 354.22816443693864, 351.842481142661, 351.42558438399857, 347.11549085421217, 346.70217148212225, 327.0626463105848, 359.5460773746149, 358.8833479779359, 358.3261449796335, 354.38044438335135, 352.0089857989902, 351.5945230153149, 347.3041992650796, 346.89329298206394, 327.36842956319293, 359.6747582372768, 359.0152265057747, 358.4607894796365, 354.5351268518679, 352.17765002055285, 351.765579754233, 347.4947254681014, 347.0861911722757, 327.6740364848805, 359.80293894725446, 359.14681546122364, 358.59532046741725, 354.6909403903645, 352.34732979214624, 351.93763202407723, 347.6856831708482, 347.2795010148914, 327.9791119820571, 359.9305918825719, 359.27799838522213, 358.7295468473541, 354.84716413112085, 352.51735009910374, 352.1100129789742, 347.8770369358295, 347.4731951711178, 328.284013538353, 360.05770091275957, 359.40870850213605, 358.8633593051214, 355.0033868433894, 352.68733847102294, 352.28235701519156, 348.0683495092375, 347.66684319489406, 328.5886341886035, 360.18425956565073, 359.5389106268463, 358.9966985373584, 355.15937806088664, 352.85708462079043, 352.4544574252532, 348.2594310646577, 347.8602588087265, 328.89295628791695, 360.31026505658696, 359.6685859500796, 359.1295322775445, 355.315010014544, 353.0264718380243, 352.6261994623421, 348.4501817250344, 348.05334408227435, 329.1969744071931, 360.4357067685235, 359.797715586016, 359.2618347276937, 355.4702078231311, 353.1954312528776, 352.79751532669405, 348.6405419046678, 348.24604049073884, 329.5006804320276, 360.56058184104893, 359.92629144403884, 359.39359341657473, 355.62492791266584, 353.36392294693417, 352.96836575146324, 348.83047746721644, 348.4383145437574, 329.80407156677404, 360.6848880834346, 360.05430836122054, 359.5248006967546, 355.77914498529526, 353.53192325626645, 353.13872736673443, 349.0199835101245, 348.6301616302637, 330.10715705094293, 360.8086236859648, 360.1817628430808, 359.65545167004854, 355.9328441595078, 353.6994188554729, 353.308587125641, 349.20903630496156, 348.82155829797205, 330.4099265537137, 360.93178510944495, 360.30868015309426, 359.7855957953845, 356.08625627570467, 353.86662610479783, 353.4781577575402, 349.3978177214588, 349.0126828168832, 330.71238729818157, 361.0543673201441, 360.43502081834947, 359.9151647028408, 356.2391019676775, 354.03328627475446, 353.64718485722983, 349.5861042764452, 349.2033159910042, 331.0145238004145, 361.17637112916145, 360.56077799143867, 360.04414512202277, 356.391318308538, 354.1993394769794, 353.8156095203175, 349.7738471419494, 349.3934099678911, 331.3163345617066, 361.2977966251537, 360.68595695741453, 360.1725467073848, 356.5429433728213, 354.3648204315541, 353.98346587421787, 349.961076299178, 349.58299414116954, 331.61782105583467, 361.4186431498039, 360.81056021964014, 360.30037462400213, 356.6939954076979, 354.5297457306165, 354.1507702201017, 350.14780616336503, 349.772082637603, 331.9189837024387, 361.53890980837923, 360.9345873831362, 360.4276289044225, 356.8444859125872, 354.69412610691154, 354.31753315678145, 350.33403566187525, 349.96067425177307, 332.21981498668276, 361.65859554223454, 361.05803855438404, 360.5543106406558, 356.99442293825024, 354.85797029634267, 354.4837635415934, 350.51972279166824, 350.14872710103015, 332.5202787464891, 361.77769914211405, 361.180913079996, 360.68041965342826, 357.1438096404862, 355.021278834192, 354.6494614520711, 350.7049447710395, 350.33631794984905, 332.8204301823181, 361.8962192635932, 361.30321112454914, 360.80595738043047, 357.2926564454817, 355.1840838542217, 354.8146628255909, 350.8889614355309, 350.5227104047472, 333.1197120845686, 362.01415418306397, 361.4249188313092, 360.93091161106935, 357.44096273837926, 355.34635704950335, 354.97933450530707, 351.07268351661855, 350.7088103889005, 333.418801902411, 362.13114394169145, 361.54572236131696, 361.0550017188708, 357.588682187391, 355.50804171165385, 355.1434179796737, 351.2559026802481, 350.8944077805644, 333.7174045691697, 362.2455643155315, 361.6641061079887, 361.1768237621979, 357.7351975820196, 355.66849364879624, 355.30626446873106, 351.43788535613515, 351.0787644607424, 334.01456582657624, 362.3593721583911, 361.7817978000524, 361.29788576673343, 357.8804662117798, 355.8277728331379, 355.46795194049827, 351.61885275399527, 351.2621194805398, 334.3113724876562, 362.4725771982627, 361.89884494441617, 361.4182669116736, 358.0247914770286, 355.9861566550861, 355.62875316625383, 351.79904179865434, 351.4447051852903, 334.60783929590997, 362.5830366681408, 362.01334804054824, 361.53627711081776, 358.16796033404177, 356.1433374853326, 355.78834487479844, 351.9780047979604, 351.6260583751739, 334.9027661800898, 362.69204552576826, 362.1263658573852, 361.65277377201414, 358.30940832525897, 356.2988673883431, 355.94629928221923, 352.1554818165802, 351.805939093558, 335.19686250319245, 362.80043809014825, 362.23868756708777, 361.7685060879637, 358.44960364168355, 356.4532186012181, 356.1030887148155, 352.33195184476637, 351.98482641912847, 335.4906115459534, 362.80103751499587, 362.4505707136232, 362.0269278139547, 358.44636337410566, 356.04793564850246, 355.69995611433797, 351.94542495645624, 351.6004314309071, 335.2075171700054, 362.8509691809987, 362.47216894444813, 362.0146826402023, 358.14783942319093, 355.8067619995921, 355.4671476294868, 351.77986943370723, 351.4431692908351, 335.44432825476076, 362.90513871430494, 362.5087562956671, 362.03044695697315, 357.98756063702655, 355.6897770195879, 355.3564597911361, 351.72014803467926, 351.38969099775613, 335.68750103761295, 362.96191057567245, 362.5549960775926, 362.0643908869344, 357.91767636829127, 355.6539955103139, 355.3256241785106, 351.72956744701605, 351.4040138660559, 335.9348193891028, 362.96304432699117, 362.3108218203329, 361.7663331944225, 357.92270029380103, 356.0396438226359, 355.7094461671154, 352.0990987043694, 351.771734471356, 336.21650399179475, 363.0604510754958, 362.4494080333942, 361.93937369697255, 358.3397326312711, 356.44235607162585, 356.1095552735639, 352.47838598282823, 352.14844094481145, 336.47057942433804, 363.15334155282824, 362.5692452199833, 362.0817879558935, 358.6420722455318, 356.74010817649764, 356.40643210368813, 352.76841942766026, 352.437606625619, 336.71851192191747, 363.2432565874053, 362.67720137972606, 362.20488947962065, 358.8725183039578, 356.9720629053469, 356.63859451642327, 353.0024766423381, 352.6718697420495, 336.9625587865282, 363.2438644019517, 362.8907367571047, 362.4652040634893, 358.87036584521303, 356.586866787486, 356.2553985002522, 352.63492429282877, 352.3063003313792, 336.6912118582082, 363.28774703773144, 362.9148866553983, 362.46591907392775, 358.6729904457172, 356.43315625552674, 356.10805022281033, 352.53936384313636, 352.21704754176704, 336.9016775364066, 363.33428474441916, 362.948618343856, 362.48457801978356, 358.56432661027236, 356.35914623222715, 356.0390774954416, 352.5116235069688, 352.1943012765484, 337.1162324690834, 363.38252873420004, 362.9888339657693, 362.5154821135008, 358.5166735011393, 356.3399480617705, 356.0240056606766, 352.5304908405599, 352.2172595377893, 337.3335776426697, 363.51661060632136, 363.0350040939404, 362.4604010963032, 356.76854917142373, 356.4061874407202, 352.6161893951746, 352.25693708655916, 335.1864941447967, 363.5175241494229, 362.9416736978252, 362.46604027137704, 357.112963031584, 356.7482660599289, 352.9386483031188, 352.577080792229, 335.3966273442739, 363.5994647008014, 363.027136356775, 362.55461451476407, 357.2280472509307, 356.865736119627, 353.07528579442163, 352.7160836510131, 335.64802438858254, 363.6809259253657, 363.11212886203595, 362.64272225459774, 357.3427458724915, 356.9828233803193, 353.2115434589833, 352.8547094578197, 335.89917622820724, 363.7619068078428, 363.1966497722451, 362.7303617358934, 357.45704541085985, 357.09951411612644, 353.3474539316959, 352.99299060913194, 336.15010393125493, 363.8424064134515, 363.28069731349854, 362.81753052901126, 357.57092721842156, 357.21578917664186, 353.4830854473491, 353.130994841261, 336.40085154803916, 363.84336231326864, 363.2884412790527, 362.8308685959104, 357.28868553088336, 356.7428567208584, 352.90651274933117, 352.5586746729991, 336.0305970723772, 363.93791149719334, 363.3872134254766, 362.93335268693556, 357.4252082538622, 356.8838073443201, 353.0713287739107, 352.72631244747146, 336.332314766131, 364.0317733792551, 363.4853104656093, 363.0351663523842, 357.56116378502225, 357.02419635948877, 353.23565773149386, 352.89346671313757, 336.6337180241277, 364.1249462749711, 363.58273094603436, 363.1363083932476, 357.6965155144587, 357.16398745993746, 353.3994731487727, 353.06011119008633, 336.9347897560037, 364.21742850758426, 363.67947210979673, 363.23677522201564, 357.8312499613433, 357.30316617408596, 353.56286145195696, 353.22633167315433, 337.2355857559061, 364.3092184857192, 363.7755329169863, 363.33656631604964, 357.96541898406326, 357.44178497736397, 353.72576881458747, 353.3920747291032, 337.5360712751039, 364.40003884332367, 363.8706282241838, 363.43539920932756, 358.0987745172193, 357.5795989981829, 353.88791663144735, 353.5570637880218, 337.8360664544696, 364.488764180211, 363.9636002258458, 363.5321254826199, 358.23024361047453, 357.7155464829417, 354.0483281789859, 353.7203292616578, 338.13494075075675, 364.5767948488698, 364.05589159290173, 363.62817629497783, 358.3611587774017, 357.85094621293666, 354.20820136319605, 353.88306030489275, 338.4334674959266, 364.66412879786907, 364.1475021918411, 363.7235531576974, 358.49154293857237, 357.98582307079363, 354.3673650284713, 354.04508701247033, 338.73153619708233, 364.75076415719116, 364.23842732045523, 363.8182491121482, 358.62136250351847, 358.12014077440716, 354.5260539740824, 354.20664246837265, 339.02929843354656, 364.8366992518743, 364.3286652191726, 363.91226239808395, 358.75061683003764, 358.2538986807702, 354.6842682702051, 354.36772674226256, 339.32675425062587, 364.921932405833, 364.4182141282585, 364.0055912547563, 358.87930529762536, 358.38709616816834, 354.84200802239434, 354.52833993892403, 339.62390371646075, 365.00646194193035, 364.50707228786916, 364.098233920956, 359.0074273081528, 358.5197326368444, 354.9992733726642, 354.6884821993338, 339.92074692273417, 365.08986123856374, 364.5948114299358, 364.1897659808995, 359.13460415246635, 358.6514339729547, 355.1556634589653, 354.8477555898761, 340.21702508499993, 365.1701939767885, 364.6794864556768, 364.27825833494506, 359.2590071220754, 358.78039055304515, 355.30951343859573, 355.00450743009196, 340.51166343105183, 365.2498209502231, 364.76346813805236, 364.3660612454104, 359.38291908866927, 358.908860782092, 355.462957613368, 355.1608564299923, 340.80603980173095, 365.3287406528177, 364.8467558408899, 364.45317484234937, 359.5062510778191, 359.03675659968184, 355.61591625104995, 355.31672343981614, 341.10010272431833, 365.40695097311306, 364.9293517187847, 364.53960481614155, 359.6285963242218, 359.1636754582739, 355.7680214241195, 355.4717432198773, 341.3936146759075, 365.48444992963965, 365.01124782200213, 364.6253394597461, 359.7503819839706, 359.29004003195047, 355.91966411131136, 355.6263038926774, 341.68682806056825, 365.5612358950986, 365.0924413203477, 364.7103759479704, 359.87160662589764, 359.4158488955096, 356.0708437921513, 355.78040494154476, 341.9797425423004, 365.6373072441041, 365.17293308612926, 364.7947151642616, 359.9922680427584, 359.5410998549956, 356.22155930747243, 355.93404521578043, 342.2723573727813, 365.6383234629959, 364.99309040408497, 364.46774351307187, 358.31002555245834, 357.68335031825785, 353.2397904955075, 365.74417740762283, 365.1048752961474, 364.58459527968483, 358.4718932464478, 357.85126218011044, 353.44096204321204, 365.8490788486009, 365.21572636639144, 364.7005225837067, 358.6330382794219, 358.0184625453724, 353.64148565829885, 365.95302462955624, 365.32563992651376, 364.81552136105074, 358.79348265828145, 358.184972972681, 353.84137358880986, 366.0560082306033, 365.43461155854504, 364.9295889027482, 358.9533939072571, 358.3509630248973, 354.0404205134645, 366.15801303688033, 365.5426244625923, 365.04270810416193, 359.11193459018347, 358.5155949023329, 354.2382740824559, 366.25901624957453, 365.6496424757252, 365.15483168222556, 359.26940532620887, 358.6791559591605, 354.43514052637283, 366.3590066086101, 365.7556480246479, 365.2659368620314, 359.4259315659202, 358.84176544107385, 354.631084089938, 366.45797339235173, 365.8606279543267, 365.3760084580971, 359.5814051011924, 359.003312717868, 354.82595022656767, 366.5550525809674, 365.9636890986756, 365.48415884678064, 359.7350552328539, 359.1630337018366, 355.01906099924076, 366.6504581866667, 366.0650490297278, 365.5905996573389, 359.88704623026484, 359.32108557332685, 355.2105346183263, 366.74481855321284, 366.1653500736272, 365.69596244086074, 360.03791468122614, 359.4779920668036, 355.40082502079855, 366.8381261309224, 366.26458071704286, 365.80023247489146, 360.18761706623695, 359.6337058346702, 355.5898637078715, 366.9303739895812, 366.3627301039203, 365.90339573955237, 360.3361117356538, 359.7881814532237, 355.7775805493531, 367.0215557479456, 366.4597887035367, 366.0054401848184, 360.4833859469893, 359.9414031747541, 355.9638624552391, 367.1116656660695, 366.55574597581176, 366.10635142371865, 360.6293660485509, 360.09329275869425, 356.1486900581198, 367.20069871137355, 366.65059294705264, 366.206117346561, 360.77401048651524, 360.2438049103531, 356.331996744233, 367.28865054773644, 366.7443206400091, 366.3047252844024, 360.91723877112645, 360.3928547362329, 356.51375649069564, 367.37551746747476, 366.83692258144987, 366.40216660549555, 361.0589838357246, 360.5403725948245, 356.69383940601307, 367.461296333322, 366.92839133429175, 366.4984304806643, 361.1992744552879, 360.6863832147508, 356.8722034204319, 367.5459846785789, 367.01872104467157, 366.5935084139304, 361.3380906806829, 360.8308634951543, 357.0487571148787, 367.6295805174816, 367.1079073300031, 366.68739418515, 361.4753958191375, 360.9737745512796, 357.2233541722879, 367.7103728166028, 367.19423417080156, 366.7783890080069, 361.6096498527531, 361.11359692231133, 357.3945166484075, 367.78926345382763, 367.278632926679, 366.86743901433914, 361.74192874266953, 361.25142419086666, 357.5636639103762, 367.86727145311625, 367.3621645236807, 366.95562918200227, 361.873543134145, 361.38859569310125, 357.73229768215754, 367.94439609477934, 367.4448282273969, 367.0429588175926, 362.00449501399396, 361.5251134647447, 357.900421842434, 368.02063509449533, 367.52662169738556, 367.12942556126933, 362.1347842459319, 361.6609773463724, 358.0680377341564, 368.0959861237714, 367.6075431721496, 367.21502813367135, 362.26443609379874, 361.79621317695364, 358.2351119794245, 368.1704468076376, 367.6875901910437, 367.29976402763754, 362.3933863522118, 361.9307566956187, 358.4016477984432, 368.2440148806584, 367.7667587292777, 367.383627821942, 362.5217516982268, 362.0647229136442, 358.56774186550325, 368.3166881421715, 367.8450495260617, 367.4666226393931, 362.6493342359277, 362.19791677845785, 358.73322916579326, 368.38846362095234, 367.9224615430863, 367.5487490105551, 362.77600598230504, 362.33021217852706, 358.89800108729065, 368.4593388524292, 367.9989882540975, 367.629997167016, 362.9020228427726, 362.46186115176346, 359.0622820822955, 368.529311594386, 368.07462602323704, 367.7103634882353, 363.02738552244944, 362.5928644215583, 359.226071090362, 368.5976501787818, 368.14863210278094, 367.7891140793252, 363.15146894348936, 362.7226074704273, 359.3887552359499, 368.664558404243, 368.2212156545678, 367.86645512754274, 363.27443326477874, 362.8512469089408, 359.550540447233, 368.7305576814707, 368.29290630237125, 367.9429102133818, 363.39674653940796, 362.97924358128864, 359.7118450961524, 368.79564577715854, 368.3637015339833, 368.01847662156325, 363.5184032017406, 363.1065916795948, 359.8726832411705, 368.85982056057077, 368.4335987282103, 368.09315135745084, 363.6393938739601, 363.2332813805708, 360.0330807354706, 368.9230798193005, 368.50259671657625, 368.1669341073958, 363.7596934687853, 363.35928861664115, 360.1929783999576, 368.98542125708656, 368.57069296564464, 368.23982216407774, 363.8793357142521, 363.48464690841905, 360.35238827249515, 369.0468425953973, 368.6378852625179, 368.3118133818615, 363.9983540022959, 363.609389728076, 360.5113056965663, 369.10734138385675, 368.704173535494, 368.38290959643, 364.11676397957666, 363.73353499755126, 360.6695986252498, 369.1669151288729, 368.7695525787811, 368.4531034505378, 364.2345306348651, 363.85704513919194, 360.82741600215184, 369.2255616494913, 368.83401973779934, 368.5223919228913, 364.351651278012, 363.97991702540367, 360.9847832145965, 369.283278796167, 368.8975727374464, 368.5907726479091, 364.468129992823, 364.1021546320613, 361.14170652641485, 369.3400644310033, 368.9602093538115, 368.6582433413502, 364.5839683501192, 364.22375945801974, 361.29819011418135, 369.39591642064573, 369.02192760628526, 368.7248021512313, 364.6991787033961, 364.3447440102093, 361.4542250732477, 369.45083257420254, 369.08272533034466, 368.7904469393296, 364.81376813597717, 364.4651154033268, 361.6098095828371, 369.5048107743015, 369.1425999440429, 368.8551747576109, 364.92772227613307, 364.58485882894456, 361.76496898694666, 369.5578489198539, 369.20154959731684, 368.9189839584553, 365.0410137171921, 364.7039471218819, 361.9196892705308, 369.6099448599455, 369.2595719413594, 368.98187203688053, 365.1536529535578, 364.8223905902437, 362.0739812455362, 369.6610965323413, 369.3166645434251, 369.04383626565647, 365.2656651127904, 364.9402140103055, 362.2278652988949, 369.7113018980168, 369.37282525717274, 369.10487441209807, 365.3770528559679, 365.057419940148, 362.3813474081424, 369.76055892317095, 369.42805224394857, 369.16498478991747, 365.4878330382168, 365.1740254166516, 362.53441702509565, 369.80886553137987, 369.4823432421099, 369.22416498649335, 365.5980056415044, 365.29003024168446, 362.6870846018721, 369.85580948323, 369.53528749194356, 369.2820084893012, 365.7072070447354, 365.4050758605328, 362.8390561086712, 369.90016628004514, 369.5856662725426, 369.33730999229573, 365.8143830612779, 365.51812408887076, 362.98940284415215, 369.94357453287273, 369.6351109173631, 369.39168250934705, 365.92095965157245, 365.6305790340908, 363.1393930602069, 369.9860166327236, 369.6836036410888, 369.44510832818406, 366.0269273679294, 365.74243133563726, 363.28902169996616, 370.02636411333793, 369.73001197985553, 369.49646741585576, 366.1313091631952, 365.85271877493096, 363.4374281801758, 370.06575758785834, 369.77548122137017, 369.5468921138253, 366.2351014302152, 365.9624223015159, 363.5855087600499, 370.10419521400473, 369.82000990013364, 369.59638124594557, 366.33828708570246, 366.07152517726706, 363.7332434079819, 370.1416752443562, 369.8635951252042, 369.64493101009936, 366.44093233777267, 366.1800925233782, 363.88069520396874, 370.1781958454723, 369.906238123539, 369.6925450291108, 366.5429316380189, 366.2880216494215, 364.0276982838733, 370.21375486149344, 369.94793494458906, 369.7392179275197, 366.6443527896769, 366.3953786588861, 364.17435129327146, 370.24835061661463, 369.98868245124663, 369.7849454068807, 366.7452146332132, 366.50218100690364, 364.32073463073317, 370.2819815113874, 370.02847869367895, 369.8297252290298, 366.8455319958569, 366.6084431767587, 364.46686825723384, 370.31464594641835, 370.0673225260662, 369.87355659023274, 366.94534667475943, 366.71420737366947, 364.61272849043604, 370.3463423317444, 370.105211530387, 369.91643640665603, 367.0446379151911, 366.8194520486731, 364.75836142401954, 370.37706920239935, 370.14214382943044, 369.9583624617898, 367.1434067289395, 366.9241778088144, 364.9037905474378, 370.4068251436704, 370.178117726572, 369.99933282143076, 367.2416620466817, 367.02839330136777, 365.04903230807855, 370.4069652611148, 370.29307394224264, 370.20402465819944, 368.6053653573695, 368.49914034321654, 358.8416286942587, 370.41728498228264, 370.30635639561933, 370.21969555619734, 368.6530823248056, 368.54970643590303, 359.1512247387344, 370.42716917910093, 370.319209882114, 370.2349385717574, 368.7006053139538, 368.6000798439121, 359.4607457079183, 370.4366172600787, 370.33163377888746, 370.24975306393225, 368.74793756388385, 368.6502637847127, 359.7701928554243, 370.44562866385564, 370.3436273317307, 370.2641381341942, 368.7951048893264, 368.70028390088106, 360.0795761723127, 370.4542028427717, 370.3551899260563, 370.27809312192505, 368.8421155240456, 368.75014837127185, 360.38889884529, 370.4623392583182, 370.36632095228777, 370.2916173681357, 368.88897830658505, 368.7998659754856, 360.6981642951336, 370.4699289907794, 370.3777423632518, 370.3060791972244, 368.82007450600196, 368.7345890256043, 360.962624678597, 370.4770623318581, 370.38785307694684, 370.31856128140646, 368.8708455832306, 368.7881888607084, 361.2734027532268, 370.4837609187995, 370.3975349436358, 370.3306151721854, 368.9214997481866, 368.8416725632091, 361.58413557937354, 370.49002426117124, 370.40678738448224, 370.3422402274544, 368.9720483183306, 368.89505137509303, 361.8948275372286, 370.4958518813712, 370.41560982679067, 370.3534358059632, 369.02250355624665, 368.94833747716683, 362.20548337277125, 370.501243315754, 370.4240017042859, 370.36420126700244, 369.0728787762518, 369.00154409495656, 362.5161082390332, 370.5061981158804, 370.43196245738017, 370.37453596991037, 369.1231884803298, 369.05468563373444, 362.8267077487076, 370.5106432109564, 370.4394190996991, 370.3843672068364, 369.173382847979, 369.10771260524393, 363.13726261979764, 370.51367177522593, 370.44546709557187, 370.39279466777987, 369.2227060188273, 369.1598741898262, 363.44748031215016, 370.5162633179681, 370.4510834286254, 370.4007904453552, 369.2720328653691, 369.2120394255893, 363.75769942710286, 370.518417462054, 370.4562676972334, 370.4083541263398, 369.3213654618099, 369.26421037290623, 364.06792076743585, 370.52013385034627, 370.4610193754999, 370.4154850618015, 369.3707258160963, 369.31640889295613, 364.3781528508698, 370.5214121536502, 370.4653379213702, 370.42218255282614, 369.42014198621933, 369.3686628566157, 364.6884065366711, 370.52225207452216, 370.4692228144417, 370.42844591460266, 369.4696433804624, 369.421001476049, 364.99869320670973, 370.52265335022855, 370.47267354134635, 370.43427444835334, 369.51926316374215, 369.47345769500134, 365.30902569678045, 370.52261575736463, 370.4756895949575, 370.4396674364662, 369.5690389863001, 369.5260689126306, 365.61941857863314, 370.5221391173957, 370.4782704730272, 370.44462413594965, 369.61901391078163, 369.5788779044042, 365.9298885187747, 370.5212233033826, 370.48041567599785, 370.4491437695516, 369.66923760931417, 369.631934011194, 366.24045474177876, 370.51986824824945, 370.4821247035973, 370.45322551356685, 369.7197679355857, 369.68529470087094, 366.5511396387197, 370.51807395509366, 370.48339704950655, 370.4568684807371, 369.77067302944556, 369.73902765887044, 366.8619695817192, 370.5176801496134, 370.48875501665674, 370.45679684255134, 369.7319113895141, 369.70055738813625, 366.84998931844035, 370.476989820565, 370.45056152215375, 370.4214025552701, 369.74637974628797, 369.71777203281766, 367.11688439544696, 370.43592979369373, 370.41200150674933, 370.38563741943426, 369.7614847711128, 369.73561909971136, 367.38402588168117, 370.4354526372922, 370.41166551393576, 370.38545737304946, 369.7519513154999, 369.7177593311944, 367.38007604147066, 370.39299899214086, 370.3717639556552, 370.34840072561843, 369.7690393830915, 369.738558961065, 367.654632722726, 370.3501601879741, 370.33147864835325, 370.3109537964363, 369.78709063485354, 369.76031325229656, 367.9295613665139, 370.3069368856476, 370.2908088923105, 370.27311444179475, 369.806317972167, 369.7832332223958, 368.2049441911065, 370.2633300000649, 370.24975378024, 370.23487981218756, 369.8270077554413, 369.8076026978901, 368.48089178318673, 370.21934079615636, 370.20831201679175, 370.19624587277264, 369.849563894747, 369.8338220148205, 368.75756012477524, 370.17497104929544, 370.1664815315924, 370.1572064239392, 369.87459520390524, 369.862494599872, 369.03518432763843, 370.13022334364695, 370.124258523183, 370.11775078625004, 369.9031157704505, 369.8946255673475, 369.3141560121738, 370.1302530959226, 370.1183082454801, 370.1079575140883, 369.40028487377805, 370.1396419300707, 370.1310553423132, 370.1236175166754, 369.6150983108274, 370.1487787632388, 370.1435538804251, 370.1390311599322, 369.8298157594514, 370.15766327332034, 370.1558082398711, 370.1542027851569, 370.04443891114056, 370.1577973551078, 370.1532067187924, 370.1531899824177, 370.1531735841748, 370.1697341423937, 370.1772127204659, 370.1772399782597, 370.1772666853531, 370.17940579897373, 370.19902738391403, 370.19909884676696, 370.19916886582666, 370.18752715626533, 370.2193446005632, 370.21946041258707, 370.2195738848133, 370.194395554507, 370.23845548101264, 370.2386157583033, 370.2387727974464, 370.20000682794625, 370.2563562223238, 370.2565610813431, 370.2567618015119, 370.204356797541, 370.27304301305423, 370.27329257063064, 370.27353708629346, 370.20744127092166, 370.28851203307823, 370.28880640640807, 370.2890948323933, 370.2092560423553, 370.3027594539435, 370.3030987605914, 370.3034312120884, 370.20979689270865, 370.3157814386193, 370.3161657965193, 370.3165423890795, 370.20905958941006, 370.32757414151433, 370.3280036689703, 370.32842451850763, 370.20703988641367, 370.338133708481, 370.338608524168, 370.3390737469597, 370.20373352416124, 370.3474562768031, 370.34797649976775, 370.3484862124554, 370.19913622954533, 370.3555379751868, 370.3561037248484, 370.35665804443846, 370.19324371587214, 370.36237492374795, 370.3629863198993, 370.36358536376434, 370.1860516828235, 370.3679632340021, 370.36862039680994, 370.369264282689, 370.1775558164201, 370.3722990088524, 370.3730020588587, 370.37369090485834, 370.16775178898354, 370.37537834257824, 370.3761274007007, 370.3768613252958, 370.1566352590987, 370.37719732082303, 370.37799250835633, 370.37877163039104, 370.14420187157634, 370.37775202058407, 370.37859345920015, 370.3794178978881], "diameter": [0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.8382, 0.9144, 1.0668, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2201672, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2058797, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.11861799999999999, 0.1397, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2720594, 0.301625, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.41275, 0.4572, 0.508, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.1470914, 0.16827499999999998, 0.2325624, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2325624, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2325624, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2325624, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.11861799999999999, 0.1397, 0.2205736, 0.27305, 0.37465, 0, 0.2205736, 0.27305, 0.37465, 0, 0.2205736, 0.27305, 0.37465, 0, 0.2205736, 0.27305, 0.37465, 0, 0.2205736, 0.27305, 0.37465, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413, 0, 0.23164799999999997, 0.236474, 0.2413]}, "gaslift": {"fluid": "Methane", "pressure": {"d_p": -7339893.222209558, "inlet": 35984359.98821055, "outlet": 43324253.21042011}, "flow_rate": 350000, "valve_md": 3000, "input_pressure": 4978.170000000001, "input_temperature": 60}, "heat_length_i": [-4097.2433984538775, -3309.7009354883494, -2689.6617354436125, -2202.510791388598, -2964.5725006677926, -2051.1852769890234, -1470.1631763500181, -1101.3727551199624, -1101.41578963478, -1150.8219903904496, -1175.626359002639, -1186.7312058455063, -1190.1110344312165, -1189.1309858061088, -1185.1357742091438, -1179.9303696936981, -1174.0731604388236, -1167.8431270267076, -1161.3983194767939, -1154.8288175152184, -1148.1856938149785, -1141.4974453776736, -1134.7787093717602, -1128.0387621669233, -1121.282864938135, -1114.5139901649266, -1107.6809016710738, -1100.8447916257815, -1094.0192613161641, -1087.1950581163555, -1080.366545599127, -1073.5328184352165, -1066.6917896730295, -1059.8424553319842, -1052.982119473872, -1046.1072962363223, -1039.147655023274, -1031.8667346831928, -1024.7297773212676, -1017.6697138529773, -1010.2430895060774, -1002.8763055444226, -995.654022279258, -737.8320492398133, -796.774966900615, -833.0411292518725, -854.4560370875555, -1153.0064763142464, -1080.0462398156442, -1032.2371408253882, -1000.1653914286312, -741.1233838558884, -781.9384461249674, -808.1896887880122, -824.4069886314652, -1000.7497058910969, -1007.1990395199095, -1000.609963390334, -994.0131577510183, -987.4092867278196, -980.7997389012997, -968.9536969961712, -961.0933010908406, -953.2229933291158, -945.3422349738299, -937.4527848082733, -929.5535474567838, -921.6388532823875, -913.6888258677245, -905.7278427060184, -897.7524207732404, -889.7673382508153, -881.772596567666, -873.7681978716425, -865.7541450530159, -857.7222805315959, -849.6387246115648, -841.5469105206308, -833.4452157037757, -825.3261528092099, -817.1976782822276, -809.0597815327108, -800.9124389730171, -1112.4720312350692, -1101.7424422308927, -1090.9930341774007, -1080.2246028252346, -1069.4335292055669, -1058.6204586419615, -1047.8089390788969, -1037.0099854237499, -1026.227897353435, -1015.4509382071583, -1004.6916923782443, -993.9729770781457, -983.3015879265802, -972.6842246262457, -962.1262220309054, -951.6357263053648, -941.219378226325, -930.8849953010921, -920.6371483950535, -910.4830205861707, -900.4282068063596, -890.4765982591276, -880.5917020648172, -870.7422366365917, -860.8772699745092, -850.9967152426234, -841.100613519259, -831.1879438443415, -821.2588047044603, -811.3161531988751, -801.354941823667, -791.3718483431982, -781.3737383335957, -771.3605793577333, -761.3136246942122, -751.2391732992467, -741.1500224012857, -731.0466020123504, -720.9297029384651, -710.7975149979604, -700.6504064076146, -690.4882347402613, -680.3069609189713, -670.1111408512479, -659.9015510870288, -649.6783832345017, -639.4417650370913, -629.1914241220261, -618.927304796735, -608.6501822847817, -598.3596278921166, -588.0559723390202, -577.7398392173612, -567.4114113730813, -557.0703661616274, -546.7170232825661, -536.3423889198816, -525.9180558234843, -515.4828174636166, -505.03651915730927, -494.5528372603606, -484.0591866774569, -473.5549546847765, -463.0420707722518, -452.51546147122343, -441.9781441647354, -431.43257809416576, -420.87937382949775, -410.3178069741715, -399.7492874432504, -389.1745337432707, -378.59404895849747, -188.57033246659893, -183.51257370827472, -178.45251853752535, -173.39020529741114, -168.3259395973962, -163.25981891310104, -158.19194787937624, -151.75357318819422, -146.73197053814357, -141.70898381250953, -136.6847470071444, -131.6594052870774, -126.63311627408811, -121.60605164717674, -116.57762161196173, -111.5388779074498, -106.50017771492226, -101.46154559502165, -96.42324208303246, -91.385599352477, -86.34896554446536, -81.31373328848484, -76.28034830463378, -71.24932038562532, -66.22123758403436, -61.196784799299486, -56.17676870136897, -55.65953096010768, -50.784328750019476, -45.91666374065515, -45.64506170223767, -40.690260377998044, -35.74683669007316, -30.817305544830813, -25.905049597561835, -21.01484003147756, -16.15386848487505, -11.3341139014338, -13.817851834933707, -9.929228066184171, -6.037668189352156, -2.143223945055236, -5.099969871818797, 8.306095527638323, 21.776424336822046, 35.29066742461739, 48.84028765134429, 62.425396542552875, 76.04610587325931, 89.70252767255843, 103.39477421438536, 117.12295802335056, 130.8871918759744, 144.68758879962192, 158.5242620722317, 172.39732522426027, 186.30689203701297, 200.25307654501574, 214.23599303484838, 228.2557560461452, 242.312480371138, 256.4062810570565], "heat_length_o": [-311.0591501763865, -346.2783220964571, -373.542309047404, -394.48196629630786, -395.88185926520373, -424.56131378090487, -442.12533440450676, -452.2183410555926, -1213.2184192217076, -1196.1459590820562, -1183.7732659587361, -1174.0236710773513, -1165.748346875516, -1158.3002604203136, -1151.3613973760607, -1144.6393857885832, -1138.0318694950342, -1131.4796408087573, -1124.9601396281394, -1118.4544019806178, -1111.9525418294097, -1105.4491363164416, -1098.9412301471439, -1092.4270238527877, -1085.905705447377, -1079.37650568887, -1072.8494521518894, -1066.3126022766637, -1059.7632385889137, -1053.2029978815774, -1046.6326837307463, -1040.0526660241742, -1033.46260939501, -1026.8637780272734, -1020.2456673185181, -1013.6216714902404, -1006.9967704140931, -1000.3836351914275, -993.7325660285677, -987.0563197690936, -980.3980952841359, -973.7022389891238, -966.968504540131, -961.0297858856159, -937.9273587727982, -920.5362765376636, -906.8769847388552, -911.9208201331634, -919.1100289044081, -921.5273121658497, -920.9537428011142, -915.4299774353224, -897.8590702517866, -883.9473571924584, -872.5514815246504, -1000.7497058910471, -1007.1990395195209, -1000.6099633900193, -994.0131577516431, -987.4092867271193, -980.7997389011049, -968.953696995224, -961.0933010907625, -953.2229933284303, -945.3422349737043, -937.4527848081982, -929.553547458149, -921.6388532822691, -913.6888258666125, -905.7278427078123, -897.7524207737342, -889.7673382511116, -881.7725965678236, -873.7681978720836, -865.7541450537241, -857.7222805335305, -849.6387246098486, -841.5469105202534, -833.4452157062831, -825.3261528092213, -817.1976782822918, -809.0597815336761, -800.9124389741878, -1112.4720312329805, -1101.7424422323122, -1090.9930341777037, -1080.2246028254658, -1069.4335292048431, -1058.6204586403503, -1047.8089390780501, -1037.0099854261093, -1026.227897353329, -1015.4509382066522, -1004.6916923800015, -993.9729770789461, -983.301587926817, -972.684224623426, -962.1262220308229, -951.6357263060008, -941.2193782262174, -930.8849953008872, -920.6371483952619, -910.483020586928, -900.4282068070589, -890.4765982579083, -880.5917020663205, -870.7422366375429, -860.8772699743218, -850.9967152430726, -841.1006135218755, -831.1879438429442, -821.2588047063551, -811.3161531988495, -801.3549418243127, -791.3718483426425, -781.3737383328074, -771.3605793574739, -761.3136246934307, -751.2391733010332, -741.1500223994304, -731.0466020108989, -720.9297029365298, -710.7975149977083, -700.6504064103652, -690.4882347401629, -680.3069609173359, -670.1111408499775, -659.9015510890347, -649.6783832333899, -639.4417650366977, -629.1914241224864, -618.9273047963995, -608.6501822844633, -598.3596278919076, -588.0559723367334, -577.7398392169865, -567.4114113744471, -557.0703661594413, -546.7170232830896, -536.3423889208552, -525.9180558254184, -515.4828174637752, -505.0365191555781, -494.5528372598394, -484.0591866787652, -473.5549546829005, -463.0420707719797, -452.51546147079364, -441.9781441636712, -431.4325780935048, -420.87937382946353, -410.3178069728423, -399.74928744363945, -389.17453374043413, -378.5940489583872, -188.5703324677193, -183.512573709203, -178.45251853710215, -173.39020529719454, -168.32593959734868, -163.25981891309482, -158.19194787956766, -151.7535731888632, -146.7319705345136, -141.7089838132709, -136.68474700695796, -131.65940528628926, -126.63311627291772, -121.60605164870309, -116.57762161322275, -111.53887790714482, -106.50017771581531, -101.46154559470232, -96.42324208508, -91.38559935170615, -86.34896554476771, -81.31373328744205, -76.28034830240375, -71.24932038716027, -66.2212375855662, -61.196784799014345, -56.176768701686, -55.65953096027861, -50.784328750263555, -45.91666374025439, -45.64506170644921, -40.69026037822053, -35.746836692161224, -30.81730555225264, -25.905049599517042, -21.014840033878855, -16.153868487010755, -11.33411389861532, -13.817851835158077, -9.929228066043121, -6.03766818951727, -2.1432239451076973, -5.099969883729774, 8.306095528832387, 21.776424330251913, 35.29066740999622, 48.84028764995713, 62.42539654973688, 76.04610589179698, 89.70252768842214, 103.39477419939894, 117.12295802040941, 130.88719188856524, 144.6875888061587, 158.52426209369875, 172.39732521312405, 186.3068920506622, 200.25307654557693, 214.2359930260635, 228.25575603246165, 242.31248040564913, 256.4062810748972]}}, "thermal_profiles": [{"is_default": false, "name": "Fluido (Prod GL PA)", "calculated_from": "Daq40oro2q-5-f", "source": "GRADIENT", "_id": "RaDpY5e61Q", "data": [{"gradient": 0, "_id": "9ByrDoW4Zq", "elevation": -2047, "temperature": 84.363602849612, "vertical_depth": 2072}, {"gradient": 17.205882767822807, "_id": "najqb09ky6", "elevation": -2053.685, "temperature": 84.47862417591489, "vertical_depth": 2078.685}, {"gradient": 17.20845695735308, "_id": "NQqV31lM0e", "elevation": -2060.369, "temperature": 84.59364550221784, "vertical_depth": 2085.369}, {"gradient": 13.83427984805008, "_id": "vxPAD0amL7", "elevation": -2067.05, "temperature": 84.68607232588266, "vertical_depth": 2092.05}, {"gradient": 13.838422468149629, "_id": "bMlXg9mRme", "elevation": -2073.729, "temperature": 84.77849914954743, "vertical_depth": 2098.729}, {"gradient": 11.181458700891595, "_id": "3JYjKlkNkL", "elevation": -2080.405, "temperature": 84.85314656783459, "vertical_depth": 2105.405}, {"gradient": 11.183133825791707, "_id": "48JxqWQv4y", "elevation": -2087.08, "temperature": 84.92779398612174, "vertical_depth": 2112.08}, {"gradient": 14.503591854704158, "_id": "g4wGo9Ylor", "elevation": -2087.18, "temperature": 84.92924434530721, "vertical_depth": 2112.18}, {"gradient": 14.503591854638204, "_id": "8El2xbqMR1", "elevation": -2087.28, "temperature": 84.93069470449268, "vertical_depth": 2112.28}, {"gradient": 13.012944201740376, "_id": "3yrxX65RXe", "elevation": -2096.532, "temperature": 85.05109046424718, "vertical_depth": 2121.532}, {"gradient": 13.011537853075243, "_id": "2Gr1kRVNkR", "elevation": -2105.785, "temperature": 85.17148622400168, "vertical_depth": 2130.785}, {"gradient": 9.460574709884066, "_id": "LwP1RXj7xo", "elevation": -2115.037, "temperature": 85.25901546121753, "vertical_depth": 2140.037}, {"gradient": 9.4605747098836, "_id": "GAaGwlb1y4", "elevation": -2124.289, "temperature": 85.34654469843338, "vertical_depth": 2149.289}, {"gradient": 7.200905319547884, "_id": "mgMwpLo8KE", "elevation": -2133.542, "temperature": 85.41317467535515, "vertical_depth": 2158.542}, {"gradient": 7.201683627521789, "_id": "0M2G7mKker", "elevation": -2142.794, "temperature": 85.47980465227698, "vertical_depth": 2167.794}, {"gradient": 6.369051123448451, "_id": "K3vNJd89PX", "elevation": -2142.894, "temperature": 85.48044155738933, "vertical_depth": 2167.894}, {"gradient": 6.369051123419489, "_id": "Qk3qa8WGDv", "elevation": -2142.994, "temperature": 85.48107846250167, "vertical_depth": 2167.994}, {"gradient": 6.437326646217625, "_id": "jO8JNoVGgq", "elevation": -2152.935, "temperature": 85.54507192669172, "vertical_depth": 2177.935}, {"gradient": 6.437326646217331, "_id": "PldWQZJGPM", "elevation": -2162.876, "temperature": 85.60906539088177, "vertical_depth": 2187.876}, {"gradient": 6.554747895645005, "_id": "gOp09lbNYV", "elevation": -2172.816, "temperature": 85.67421958496448, "vertical_depth": 2197.816}, {"gradient": 6.554088530606968, "_id": "Lg8QlaO5RK", "elevation": -2182.757, "temperature": 85.73937377904724, "vertical_depth": 2207.757}, {"gradient": 6.641893855551624, "_id": "MDKlyv7xZn", "elevation": -2192.698, "temperature": 85.80540084586528, "vertical_depth": 2217.698}, {"gradient": 6.641893855551319, "_id": "bEMedPb5OV", "elevation": -2202.639, "temperature": 85.87142791268332, "vertical_depth": 2227.639}, {"gradient": 6.67923782817756, "_id": "3QgvOnxRyZ", "elevation": -2212.58, "temperature": 85.93782621593323, "vertical_depth": 2237.58}, {"gradient": 6.6792378281772535, "_id": "wN9zJLM32x", "elevation": -2222.521, "temperature": 86.00422451918314, "vertical_depth": 2247.521}, {"gradient": 6.688099575278122, "_id": "BbjyOBPmZy", "elevation": -2232.462, "temperature": 86.07071091706098, "vertical_depth": 2257.462}, {"gradient": 6.68809957528384, "_id": "edxJvXg8LJ", "elevation": -2242.403, "temperature": 86.13719731493887, "vertical_depth": 2267.403}, {"gradient": 6.525841065227959, "_id": "MOWBL32mmR", "elevation": -2252.344, "temperature": 86.2020707009683, "vertical_depth": 2277.344}, {"gradient": 6.525841065233975, "_id": "Jg3YNRApB0", "elevation": -2262.285, "temperature": 86.2669440869978, "vertical_depth": 2287.285}, {"gradient": 6.494984791125016, "_id": "KV8e7JgLO6", "elevation": -2272.226, "temperature": 86.33151073080637, "vertical_depth": 2297.226}, {"gradient": 6.494984791125313, "_id": "x8kEZjydEL", "elevation": -2282.167, "temperature": 86.39607737461495, "vertical_depth": 2307.167}, {"gradient": 6.472880415588241, "_id": "Zn1XEvJYVa", "elevation": -2292.107, "temperature": 86.4604178059459, "vertical_depth": 2317.107}, {"gradient": 6.472229285881575, "_id": "j5LgPlbmmp", "elevation": -2302.048, "temperature": 86.52475823727684, "vertical_depth": 2327.048}, {"gradient": 6.447073230944483, "_id": "6vN8dKwbnB", "elevation": -2311.989, "temperature": 86.58884859226566, "vertical_depth": 2336.989}, {"gradient": 6.447073230944778, "_id": "rK0p2jPld3", "elevation": -2321.93, "temperature": 86.65293894725448, "vertical_depth": 2346.93}, {"gradient": 6.420527880365404, "_id": "8Q0aXYWZxg", "elevation": -2331.871, "temperature": 86.7167654149132, "vertical_depth": 2356.871}, {"gradient": 6.4205278803656975, "_id": "adabDkZNqW", "elevation": -2341.812, "temperature": 86.78059188257191, "vertical_depth": 2366.812}, {"gradient": 6.393171219582337, "_id": "mpJLn0e29g", "elevation": -2351.753, "temperature": 86.84414639766578, "vertical_depth": 2376.753}, {"gradient": 6.393171219576912, "_id": "EOvW9475GV", "elevation": -2361.694, "temperature": 86.9077009127596, "vertical_depth": 2386.694}, {"gradient": 6.365489029833988, "_id": "mLwlbZ8egO", "elevation": -2371.635, "temperature": 86.97098023920518, "vertical_depth": 2396.635}, {"gradient": 6.365489029834279, "_id": "3r6lXLmJqb", "elevation": -2381.576, "temperature": 87.03425956565076, "vertical_depth": 2406.576}, {"gradient": 6.3376667808180756, "_id": "lWrA0kXYGj", "elevation": -2391.517, "temperature": 87.09726231111887, "vertical_depth": 2416.517}, {"gradient": 6.338304373049386, "_id": "6XzY76x4Lo", "elevation": -2401.457, "temperature": 87.16026505658698, "vertical_depth": 2426.457}, {"gradient": 6.309310528948625, "_id": "QDMv09ay8P", "elevation": -2411.398, "temperature": 87.22298591255526, "vertical_depth": 2436.398}, {"gradient": 6.309310528948915, "_id": "0Abngq1BRP", "elevation": -2421.339, "temperature": 87.28570676852354, "vertical_depth": 2446.339}, {"gradient": 6.280810407678615, "_id": "RgQo3LaBy6", "elevation": -2431.28, "temperature": 87.34814430478627, "vertical_depth": 2456.28}, {"gradient": 6.280810407673185, "_id": "n82ANY5eGq", "elevation": -2441.221, "temperature": 87.41058184104895, "vertical_depth": 2466.221}, {"gradient": 6.2522000998757985, "_id": "olG0A3aMYa", "elevation": -2451.162, "temperature": 87.47273496224182, "vertical_depth": 2476.162}, {"gradient": 6.252200099869795, "_id": "obGB4qE7KK", "elevation": -2461.103, "temperature": 87.53488808343462, "vertical_depth": 2486.103}, {"gradient": 6.223498769251007, "_id": "KnV7x5RBZq", "elevation": -2471.044, "temperature": 87.59675588469975, "vertical_depth": 2496.044}, {"gradient": 6.223498769245004, "_id": "Z8gN04Xz8W", "elevation": -2480.985, "temperature": 87.65862368596481, "vertical_depth": 2505.985}, {"gradient": 6.194619428636852, "_id": "AB81J5mwBr", "elevation": -2490.926, "temperature": 87.72020439770489, "vertical_depth": 2515.926}, {"gradient": 6.194619428636569, "_id": "aabmWeL5ap", "elevation": -2500.867, "temperature": 87.78178510944497, "vertical_depth": 2525.867}, {"gradient": 6.165486907715278, "_id": "Qne0ZP4zP5", "elevation": -2510.808, "temperature": 87.84307621479456, "vertical_depth": 2535.808}, {"gradient": 6.166107178022051, "_id": "qv4nq9g19d", "elevation": -2520.748, "temperature": 87.9043673201441, "vertical_depth": 2545.748}, {"gradient": 6.136395182447987, "_id": "0NXLa8PJj8", "elevation": -2530.689, "temperature": 87.96536922465282, "vertical_depth": 2555.689}, {"gradient": 6.136395182441988, "_id": "b6Wz7gwVgE", "elevation": -2540.63, "temperature": 88.02637112916148, "vertical_depth": 2565.63}, {"gradient": 6.107307916321328, "_id": "ZmaPwn4zn6", "elevation": -2550.571, "temperature": 88.08708387715762, "vertical_depth": 2575.571}, {"gradient": 6.10730791631533, "_id": "M7Ln1JKVol", "elevation": -2560.512, "temperature": 88.14779662515372, "vertical_depth": 2585.512}, {"gradient": 6.078187538986094, "_id": "6XP2wo01Ea", "elevation": -2570.453, "temperature": 88.20821988747878, "vertical_depth": 2595.453}, {"gradient": 6.07818753899753, "_id": "AjQR2vGAX9", "elevation": -2580.394, "temperature": 88.26864314980395, "vertical_depth": 2605.394}, {"gradient": 6.0490221595089695, "_id": "nKvm0gqAjd", "elevation": -2590.335, "temperature": 88.32877647909163, "vertical_depth": 2615.335}, {"gradient": 6.049022159503528, "_id": "zwvyGxXYV4", "elevation": -2600.276, "temperature": 88.38890980837925, "vertical_depth": 2625.276}, {"gradient": 6.0198035336106, "_id": "8vxeo1nDlZ", "elevation": -2610.217, "temperature": 88.44875267530688, "vertical_depth": 2635.217}, {"gradient": 6.019803533616593, "_id": "26QdRJ9N0m", "elevation": -2620.158, "temperature": 88.50859554223456, "vertical_depth": 2645.158}, {"gradient": 5.9905240860831706, "_id": "v0mrVqz4wy", "elevation": -2630.099, "temperature": 88.56814734217431, "vertical_depth": 2655.099}, {"gradient": 5.9911267545024165, "_id": "ZOjN0Y4MJG", "elevation": -2640.039, "temperature": 88.62769914211407, "vertical_depth": 2665.039}, {"gradient": 5.9611770183660004, "_id": "Mgo365Vex3", "elevation": -2649.98, "temperature": 88.68695920285364, "vertical_depth": 2674.98}, {"gradient": 5.9611770183660004, "_id": "885mxQjDJm", "elevation": -2659.921, "temperature": 88.74621926359322, "vertical_depth": 2684.921}, {"gradient": 5.931743258767906, "_id": "OY4rmV9R0D", "elevation": -2669.862, "temperature": 88.80518672332863, "vertical_depth": 2694.862}, {"gradient": 5.9317432587624594, "_id": "ZLZ95RABab", "elevation": -2679.803, "temperature": 88.86415418306399, "vertical_depth": 2704.803}, {"gradient": 5.884204739336073, "_id": "XmKyLEJMNg", "elevation": -2689.744, "temperature": 88.92264906237773, "vertical_depth": 2714.744}, {"gradient": 5.884204739336342, "_id": "ZdE7NRxqJM", "elevation": -2699.685, "temperature": 88.98114394169147, "vertical_depth": 2724.685}, {"gradient": 5.754973032897043, "_id": "aMwnrRNvk5", "elevation": -2709.626, "temperature": 89.0383541286115, "vertical_depth": 2734.626}, {"gradient": 5.754973032897307, "_id": "wG6K7yEdOv", "elevation": -2719.567, "temperature": 89.09556431553153, "vertical_depth": 2744.567}, {"gradient": 5.724164714798148, "_id": "rw3LEbqxVV", "elevation": -2729.508, "temperature": 89.15246823696134, "vertical_depth": 2754.508}, {"gradient": 5.724164714797887, "_id": "YyAko0Y6Eq", "elevation": -2739.449, "temperature": 89.20937215839115, "vertical_depth": 2764.449}, {"gradient": 5.693845683114128, "_id": "xvakBm87b4", "elevation": -2749.39, "temperature": 89.26597467832698, "vertical_depth": 2774.39}, {"gradient": 5.694418504599842, "_id": "REbDRkXwWD", "elevation": -2759.33, "temperature": 89.3225771982627, "vertical_depth": 2784.33}, {"gradient": 5.555752433263669, "_id": "gNj0gRmpng", "elevation": -2769.271, "temperature": 89.37780693320178, "vertical_depth": 2794.271}, {"gradient": 5.555752433258205, "_id": "o7AxNmQgzD", "elevation": -2779.212, "temperature": 89.4330366681408, "vertical_depth": 2804.212}, {"gradient": 5.482791350341451, "_id": "mW7aBklDyN", "elevation": -2789.153, "temperature": 89.48754109695454, "vertical_depth": 2814.153}, {"gradient": 5.4827913503412, "_id": "X2ZBznWEgZ", "elevation": -2799.094, "temperature": 89.54204552576829, "vertical_depth": 2824.094}, {"gradient": 5.451793802433616, "_id": "VmzjBVPyoy", "elevation": -2809.035, "temperature": 89.59624180795828, "vertical_depth": 2834.035}, {"gradient": 5.451793802433367, "_id": "2dAmXQbK7M", "elevation": -2818.976, "temperature": 89.65043809014827, "vertical_depth": 2843.976}, {"gradient": 2.9971242378251164, "_id": "57EKGkoazV", "elevation": -2819.076, "temperature": 89.65073780257205, "vertical_depth": 2844.076}, {"gradient": 2.9971242383935506, "_id": "YGRKp9PrOX", "elevation": -2819.176, "temperature": 89.65103751499589, "vertical_depth": 2844.176}, {"gradient": 2.669000748489815, "_id": "mpR0gw5klP", "elevation": -2828.53, "temperature": 89.67600334799727, "vertical_depth": 2853.53}, {"gradient": 2.6692861115612456, "_id": "WrkMXKoWA3", "elevation": -2837.883, "temperature": 89.7009691809987, "vertical_depth": 2862.883}, {"gradient": 2.8955277585100725, "_id": "Zqon7gW06J", "elevation": -2847.237, "temperature": 89.7280539476518, "vertical_depth": 2872.237}, {"gradient": 2.89552775851629, "_id": "d6QXnO4qkv", "elevation": -2856.591, "temperature": 89.75513871430496, "vertical_depth": 2881.591}, {"gradient": 3.0346301778624043, "_id": "d68P5bekZL", "elevation": -2865.945, "temperature": 89.78352464498869, "vertical_depth": 2890.945}, {"gradient": 3.0346301778686287, "_id": "gQL4m9lGWn", "elevation": -2875.299, "temperature": 89.81191057567247, "vertical_depth": 2900.299}, {"gradient": 5.668756593314055, "_id": "VpdOlG7yoW", "elevation": -2875.399, "temperature": 89.8124774513318, "vertical_depth": 2900.399}, {"gradient": 5.726016761482998, "_id": "Nd6Bbx2Gze", "elevation": -2875.498, "temperature": 89.81304432699119, "vertical_depth": 2900.498}, {"gradient": 6.008311652144756, "_id": "4P6g3VwYwR", "elevation": -2883.604, "temperature": 89.86174770124347, "vertical_depth": 2908.604}, {"gradient": 6.0083116521514315, "_id": "oJPma0lklo", "elevation": -2891.71, "temperature": 89.91045107549581, "vertical_depth": 2916.71}, {"gradient": 5.73044277189322, "_id": "K2dJweP3v0", "elevation": -2899.815, "temperature": 89.95689631416201, "vertical_depth": 2924.815}, {"gradient": 5.729735833487889, "_id": "LavqJ9VEMy", "elevation": -2907.921, "temperature": 90.00334155282826, "vertical_depth": 2932.921}, {"gradient": 5.546886772182279, "_id": "EKy3j5R7Pg", "elevation": -2916.026, "temperature": 90.0482990701168, "vertical_depth": 2941.026}, {"gradient": 5.546202478230477, "_id": "51jo8xGXOr", "elevation": -2924.132, "temperature": 90.09325658740534, "vertical_depth": 2949.132}, {"gradient": 3.039072731783598, "_id": "NEmq5XPe5O", "elevation": -2924.232, "temperature": 90.09356049467851, "vertical_depth": 2949.232}, {"gradient": 3.0697704367114693, "_id": "5Bk6MpjDAd", "elevation": -2924.331, "temperature": 90.09386440195175, "vertical_depth": 2949.331}, {"gradient": 2.6637511096027455, "_id": "aG68eZqEVZ", "elevation": -2932.568, "temperature": 90.11580571984155, "vertical_depth": 2957.568}, {"gradient": 2.663751109616695, "_id": "bjYgl3o46x", "elevation": -2940.805, "temperature": 90.13774703773146, "vertical_depth": 2965.805}, {"gradient": 2.824918458642236, "_id": "RqKPy3Z7JN", "elevation": -2949.042, "temperature": 90.1610158910753, "vertical_depth": 2974.042}, {"gradient": 2.824575545507692, "_id": "qBeWJqNa1X", "elevation": -2957.28, "temperature": 90.18428474441919, "vertical_depth": 2982.28}, {"gradient": 2.928492763188069, "_id": "GzAa10DelR", "elevation": -2965.517, "temperature": 90.20840673930957, "vertical_depth": 2990.517}, {"gradient": 2.9284927632017093, "_id": "m3DvjGX2al", "elevation": -2973.754, "temperature": 90.23252873420006, "vertical_depth": 2998.754}, {"gradient": 25.77506192259176, "_id": "BqMozk52e6", "elevation": -2976.355, "temperature": 90.29956967026072, "vertical_depth": 3001.355}, {"gradient": 25.77506192259176, "_id": "zRmgzW0MeK", "elevation": -2978.956, "temperature": 90.36661060632139, "vertical_depth": 3003.956}, {"gradient": 4.567715507736983, "_id": "JqoarkDBEa", "elevation": -2979.056, "temperature": 90.36706737787216, "vertical_depth": 3004.056}, {"gradient": 4.567715507736983, "_id": "52NPkB9ZXm", "elevation": -2979.156, "temperature": 90.36752414942293, "vertical_depth": 3004.156}, {"gradient": 4.93617779388338, "_id": "lXjlr5GMD1", "elevation": -2987.456, "temperature": 90.40849442511217, "vertical_depth": 3012.456}, {"gradient": 4.936177793883649, "_id": "WM2kb9Exm7", "elevation": -2995.756, "temperature": 90.4494647008014, "vertical_depth": 3020.756}, {"gradient": 4.907302684599304, "_id": "1nzmWelkpb", "elevation": -3004.056, "temperature": 90.49019531308358, "vertical_depth": 3029.056}, {"gradient": 4.907302684599304, "_id": "nD24VaorKN", "elevation": -3012.356, "temperature": 90.53092592536575, "vertical_depth": 3037.356}, {"gradient": 4.878954240094757, "_id": "mgev3EQyP7", "elevation": -3020.655, "temperature": 90.5714163666043, "vertical_depth": 3045.655}, {"gradient": 4.878366414282845, "_id": "jx7Glq1NDD", "elevation": -3028.955, "temperature": 90.61190680784284, "vertical_depth": 3053.955}, {"gradient": 4.849373831848044, "_id": "R0j1r2x1NA", "elevation": -3037.255, "temperature": 90.65215661064718, "vertical_depth": 3062.255}, {"gradient": 4.84937383184831, "_id": "Q6mw8jbwa0", "elevation": -3045.555, "temperature": 90.69240641345152, "vertical_depth": 3070.555}, {"gradient": 4.779499085981008, "_id": "q4QeDJPebM", "elevation": -3045.655, "temperature": 90.69288436336012, "vertical_depth": 3070.655}, {"gradient": 4.779499085434309, "_id": "wJdl0pXlaz", "elevation": -3045.755, "temperature": 90.69336231326866, "vertical_depth": 3070.755}, {"gradient": 4.758867723211076, "_id": "E7xNEkKNNk", "elevation": -3055.689, "temperature": 90.74063690523104, "vertical_depth": 3080.689}, {"gradient": 4.758867723205136, "_id": "BMYPRolP57", "elevation": -3065.623, "temperature": 90.78791149719336, "vertical_depth": 3090.623}, {"gradient": 4.724274313564713, "_id": "jDdGZ57GG6", "elevation": -3075.557, "temperature": 90.83484243822431, "vertical_depth": 3100.557}, {"gradient": 4.724274313553052, "_id": "qg89yX599q", "elevation": -3085.491, "temperature": 90.88177337925515, "vertical_depth": 3110.491}, {"gradient": 4.689596120190772, "_id": "3VmZarPZOj", "elevation": -3095.425, "temperature": 90.92835982711313, "vertical_depth": 3120.425}, {"gradient": 4.689596120190987, "_id": "Od6n2GvnDQ", "elevation": -3105.359, "temperature": 90.9749462749711, "vertical_depth": 3130.359}, {"gradient": 4.654833531964132, "_id": "MXy0gQ90k5", "elevation": -3115.293, "temperature": 91.02118739127764, "vertical_depth": 3140.293}, {"gradient": 4.65483353197579, "_id": "KOdLxrqLGW", "elevation": -3125.227, "temperature": 91.06742850758428, "vertical_depth": 3150.227}, {"gradient": 4.619990846336306, "_id": "npJqv21qeq", "elevation": -3135.161, "temperature": 91.11332349665179, "vertical_depth": 3160.161}, {"gradient": 4.619990846330795, "_id": "OM18Ono8A2", "elevation": -3145.095, "temperature": 91.15921848571924, "vertical_depth": 3170.095}, {"gradient": 4.571187719169281, "_id": "K82pBz0pL2", "elevation": -3155.029, "temperature": 91.20462866452146, "vertical_depth": 3180.029}, {"gradient": 4.571187719169281, "_id": "YaWPNXLP1M", "elevation": -3164.963, "temperature": 91.2500388433237, "vertical_depth": 3189.963}, {"gradient": 4.465740733201782, "_id": "GM2A50wARP", "elevation": -3174.897, "temperature": 91.29440151176732, "vertical_depth": 3199.897}, {"gradient": 4.4657407332073, "_id": "DRyVPnEV8Y", "elevation": -3184.831, "temperature": 91.338764180211, "vertical_depth": 3209.831}, {"gradient": 4.4307765582245375, "_id": "2mnxPjkxJ0", "elevation": -3194.765, "temperature": 91.3827795145404, "vertical_depth": 3219.765}, {"gradient": 4.430776558224335, "_id": "Q9DQx8BQrj", "elevation": -3204.699, "temperature": 91.4267948488698, "vertical_depth": 3229.699}, {"gradient": 4.3957091302210936, "_id": "xnb5ZVl5rJ", "elevation": -3214.633, "temperature": 91.47046182336942, "vertical_depth": 3239.633}, {"gradient": 4.3957091302266145, "_id": "GblWYG4Wxq", "elevation": -3224.567, "temperature": 91.51412879786909, "vertical_depth": 3249.567}, {"gradient": 4.3605475801303255, "_id": "6g4QKaNeg6", "elevation": -3234.501, "temperature": 91.5574464775301, "vertical_depth": 3259.501}, {"gradient": 4.360986576167562, "_id": "7mDxrpqxjK", "elevation": -3244.434, "temperature": 91.60076415719118, "vertical_depth": 3269.434}, {"gradient": 4.3253017255391235, "_id": "gabD12qDk2", "elevation": -3254.368, "temperature": 91.64373170453268, "vertical_depth": 3279.368}, {"gradient": 4.32530172555037, "_id": "ddXolNzoGj", "elevation": -3264.302, "temperature": 91.6866992518743, "vertical_depth": 3289.302}, {"gradient": 4.289971509901019, "_id": "zGDMW1LMxV", "elevation": -3274.236, "temperature": 91.72931582885366, "vertical_depth": 3299.236}, {"gradient": 4.289971509900822, "_id": "56mYGNvY55", "elevation": -3284.17, "temperature": 91.77193240583301, "vertical_depth": 3309.17}, {"gradient": 4.254556880275269, "_id": "mlxJY2WBlR", "elevation": -3294.104, "temperature": 91.81419717388167, "vertical_depth": 3319.104}, {"gradient": 4.254556880280797, "_id": "Vpjy6Z5yp7", "elevation": -3304.038, "temperature": 91.85646194193038, "vertical_depth": 3329.038}, {"gradient": 4.197669450039582, "_id": "qDQLR54Lne", "elevation": -3313.972, "temperature": 91.89816159024707, "vertical_depth": 3338.972}, {"gradient": 4.197669450039775, "_id": "aaGBKp0Bqe", "elevation": -3323.906, "temperature": 91.93986123856376, "vertical_depth": 3348.906}, {"gradient": 4.043322841991236, "_id": "0V8zZ14zaw", "elevation": -3333.84, "temperature": 91.9800276076761, "vertical_depth": 3358.84}, {"gradient": 4.043322841997142, "_id": "GBKa5gkagY", "elevation": -3343.774, "temperature": 92.0201939767885, "vertical_depth": 3368.774}, {"gradient": 4.007800152740128, "_id": "4mgJn6qJR0", "elevation": -3353.708, "temperature": 92.06000746350583, "vertical_depth": 3378.708}, {"gradient": 4.007800152740311, "_id": "0NPjMkLjkJ", "elevation": -3363.642, "temperature": 92.09982095022315, "vertical_depth": 3388.642}, {"gradient": 3.972201660689955, "_id": "aK4VWaeYK1", "elevation": -3373.576, "temperature": 92.13928080152044, "vertical_depth": 3398.576}, {"gradient": 3.972201660689955, "_id": "m7Qrb1zrOk", "elevation": -3383.51, "temperature": 92.17874065281774, "vertical_depth": 3408.51}, {"gradient": 3.936496894266459, "_id": "yymVnebVN9", "elevation": -3393.444, "temperature": 92.21784581296538, "vertical_depth": 3418.444}, {"gradient": 3.9364968942720004, "_id": "WQ5qxYEq3l", "elevation": -3403.378, "temperature": 92.25695097311308, "vertical_depth": 3428.378}, {"gradient": 3.900692396144499, "_id": "XJomOQkmrG", "elevation": -3413.312, "temperature": 92.29570045137638, "vertical_depth": 3438.312}, {"gradient": 3.9006923961443203, "_id": "Z9ojnWJjOk", "elevation": -3423.246, "temperature": 92.33444992963967, "vertical_depth": 3448.246}, {"gradient": 3.8648059924982325, "_id": "EXLR3rwRJx", "elevation": -3433.18, "temperature": 92.37284291236915, "vertical_depth": 3458.18}, {"gradient": 3.864805992498056, "_id": "XBr06l90LO", "elevation": -3443.114, "temperature": 92.41123589509863, "vertical_depth": 3468.114}, {"gradient": 3.82883777961929, "_id": "m6LQknzo6e", "elevation": -3453.048, "temperature": 92.44927156960136, "vertical_depth": 3478.048}, {"gradient": 3.8288377796191146, "_id": "O5zVmK2VZ7", "elevation": -3462.982, "temperature": 92.4873072441041, "vertical_depth": 3487.982}, {"gradient": 5.081094458892113, "_id": "mPQg0VkgGY", "elevation": -3463.082, "temperature": 92.48781535354999, "vertical_depth": 3488.082}, {"gradient": 5.081094459460547, "_id": "OX4aK0p3dA", "elevation": -3463.182, "temperature": 92.48832346299594, "vertical_depth": 3488.182}, {"gradient": 5.319293699844834, "_id": "1Jnpv45pMn", "elevation": -3473.132, "temperature": 92.5412504353094, "vertical_depth": 3498.132}, {"gradient": 5.31982835596112, "_id": "PkY69816PA", "elevation": -3483.081, "temperature": 92.59417740762285, "vertical_depth": 3508.081}, {"gradient": 5.271429194873611, "_id": "O72dpEOd0n", "elevation": -3493.031, "temperature": 92.64662812811184, "vertical_depth": 3518.031}, {"gradient": 5.271429194884795, "_id": "zjxprvOpM2", "elevation": -3502.981, "temperature": 92.69907884860095, "vertical_depth": 3527.981}, {"gradient": 5.223406078156585, "_id": "Zjwd0RZdM1", "elevation": -3512.931, "temperature": 92.7510517390786, "vertical_depth": 3537.931}, {"gradient": 5.223931096357092, "_id": "gVLKe6jKPo", "elevation": -3522.88, "temperature": 92.80302462955626, "vertical_depth": 3547.88}, {"gradient": 5.176095750254982, "_id": "jEonqPDndR", "elevation": -3532.828, "temperature": 92.8545164300798, "vertical_depth": 3557.828}, {"gradient": 5.176095750254982, "_id": "d96pNzPpa3", "elevation": -3542.776, "temperature": 92.90600823060333, "vertical_depth": 3567.776}, {"gradient": 5.129994280679081, "_id": "j9m8jnD8pl", "elevation": -3552.718, "temperature": 92.95701063374185, "vertical_depth": 3577.718}, {"gradient": 5.133092103312268, "_id": "3w2GrR8nAG", "elevation": -3562.654, "temperature": 93.00801303688036, "vertical_depth": 3587.654}, {"gradient": 5.088323057641977, "_id": "klBOAkgORM", "elevation": -3572.579, "temperature": 93.05851464322745, "vertical_depth": 3597.579}, {"gradient": 5.092941341982554, "_id": "gzgN504NLR", "elevation": -3582.495, "temperature": 93.10901624957455, "vertical_depth": 3607.495}, {"gradient": 5.0484882881745206, "_id": "PRDq2EeXn5", "elevation": -3592.398, "temperature": 93.15901142909235, "vertical_depth": 3617.398}, {"gradient": 5.055635505894955, "_id": "WBJby0wb1K", "elevation": -3602.287, "temperature": 93.20900660861014, "vertical_depth": 3627.287}, {"gradient": 5.010976391980576, "_id": "GZK8vd08gq", "elevation": -3612.162, "temperature": 93.25849000048095, "vertical_depth": 3637.162}, {"gradient": 5.019108618602931, "_id": "8jVbRakbvj", "elevation": -3622.021, "temperature": 93.30797339235176, "vertical_depth": 3647.021}, {"gradient": 4.932384341818991, "_id": "NAwMgReX1x", "elevation": -3631.862, "temperature": 93.3565129866596, "vertical_depth": 3656.862}, {"gradient": 4.941422610998761, "_id": "lxO7LbJ7gK", "elevation": -3641.685, "temperature": 93.40505258096744, "vertical_depth": 3666.685}, {"gradient": 4.866143308134507, "_id": "wLgpB75pdn", "elevation": -3651.488, "temperature": 93.45275538381708, "vertical_depth": 3676.488}, {"gradient": 4.876589945782178, "_id": "drW6KXY6ml", "elevation": -3661.27, "temperature": 93.50045818666672, "vertical_depth": 3686.27}, {"gradient": 4.834035171423961, "_id": "q2ZgDnwgNp", "elevation": -3671.03, "temperature": 93.54763836993982, "vertical_depth": 3696.03}, {"gradient": 4.84644923195107, "_id": "w1dbrxNbB0", "elevation": -3680.765, "temperature": 93.59481855321286, "vertical_depth": 3705.765}, {"gradient": 4.804715639008131, "_id": "AymPZlbPNV", "elevation": -3690.475, "temperature": 93.64147234206763, "vertical_depth": 3715.475}, {"gradient": 4.818113069789234, "_id": "alQ0Lv9q9Q", "elevation": -3700.158, "temperature": 93.6881261309224, "vertical_depth": 3725.158}, {"gradient": 4.77671181953604, "_id": "LVPQ0RLQ1L", "elevation": -3709.814, "temperature": 93.73425006025184, "vertical_depth": 3734.814}, {"gradient": 4.791598725263031, "_id": "OnoKdBeKzq", "elevation": -3719.44, "temperature": 93.78037398958122, "vertical_depth": 3744.44}, {"gradient": 4.751029510443302, "_id": "qKzVnDWVNE", "elevation": -3729.036, "temperature": 93.82596486876344, "vertical_depth": 3754.036}, {"gradient": 4.7669258868898625, "_id": "rpzB5rGBPe", "elevation": -3738.6, "temperature": 93.87155574794565, "vertical_depth": 3763.6}, {"gradient": 4.7267057345707295, "_id": "erABpnJ3J2", "elevation": -3748.132, "temperature": 93.91661070700758, "vertical_depth": 3773.132}, {"gradient": 4.74362592776676, "_id": "r84pMNlplL", "elevation": -3757.63, "temperature": 93.9616656660695, "vertical_depth": 3782.63}, {"gradient": 4.705266108448648, "_id": "PPwa83g2gx", "elevation": -3767.091, "temperature": 94.00618218872154, "vertical_depth": 3792.091}, {"gradient": 4.7232384776690495, "_id": "a8gLr40L0d", "elevation": -3776.516, "temperature": 94.05069871137357, "vertical_depth": 3801.516}, {"gradient": 4.685267225809221, "_id": "1X2nEyqnql", "elevation": -3785.902, "temperature": 94.09467462955502, "vertical_depth": 3810.902}, {"gradient": 4.7048163241089505, "_id": "EWAMlXvMjX", "elevation": -3795.249, "temperature": 94.13865054773646, "vertical_depth": 3820.249}, {"gradient": 4.666751893114772, "_id": "7P1kd74kmw", "elevation": -3804.556, "temperature": 94.18208400760568, "vertical_depth": 3829.556}, {"gradient": 4.687907163422258, "_id": "zEwrpy9r4v", "elevation": -3813.821, "temperature": 94.22551746747479, "vertical_depth": 3838.821}, {"gradient": 4.651277835769439, "_id": "1r0bEj7b8D", "elevation": -3823.042, "temperature": 94.26840690039842, "vertical_depth": 3848.042}, {"gradient": 4.6730696146906245, "_id": "qlPLY4WLYw", "elevation": -3832.22, "temperature": 94.31129633332205, "vertical_depth": 3857.22}, {"gradient": 4.637408019758703, "_id": "YwNjdQPj8D", "elevation": -3841.351, "temperature": 94.35364050595047, "vertical_depth": 3866.351}, {"gradient": 4.660888566700588, "_id": "KG2yzwKyWM", "elevation": -3850.436, "temperature": 94.39598467857894, "vertical_depth": 3875.436}, {"gradient": 4.625198567147635, "_id": "jPpBA5mBnn", "elevation": -3859.473, "temperature": 94.43778259803025, "vertical_depth": 3884.473}, {"gradient": 4.650931284229304, "_id": "eKYmqA2627", "elevation": -3868.46, "temperature": 94.47958051748162, "vertical_depth": 3893.46}, {"gradient": 4.520101774711104, "_id": "KmK5x7q5Yl", "elevation": -3877.397, "temperature": 94.51997666704222, "vertical_depth": 3902.397}, {"gradient": 4.546555943791973, "_id": "J8oRlKLRQB", "elevation": -3886.282, "temperature": 94.56037281660281, "vertical_depth": 3911.282}, {"gradient": 4.455084550759343, "_id": "yANL1E4LYa", "elevation": -3895.136, "temperature": 94.59981813521523, "vertical_depth": 3920.136}, {"gradient": 4.455084550759343, "_id": "O9aQ0l3QpG", "elevation": -3903.99, "temperature": 94.63926345382765, "vertical_depth": 3928.99}, {"gradient": 4.40524052906107, "_id": "zZyw3qlwdz", "elevation": -3912.844, "temperature": 94.67826745347196, "vertical_depth": 3937.844}, {"gradient": 4.405738127675094, "_id": "9bW6oVE6yz", "elevation": -3921.697, "temperature": 94.71727145311627, "vertical_depth": 3946.697}, {"gradient": 4.355355865320297, "_id": "5x2v0AR5KP", "elevation": -3930.551, "temperature": 94.75583377394781, "vertical_depth": 3955.551}, {"gradient": 4.35584782915902, "_id": "mmBOZnrOvr", "elevation": -3939.404, "temperature": 94.79439609477936, "vertical_depth": 3964.404}, {"gradient": 4.305342202168439, "_id": "6DBn85LZ0O", "elevation": -3948.258, "temperature": 94.83251559463736, "vertical_depth": 3973.258}, {"gradient": 4.305342202168218, "_id": "88DO70q9LV", "elevation": -3957.112, "temperature": 94.87063509449536, "vertical_depth": 3982.112}, {"gradient": 4.2556776954780435, "_id": "1LGXOkaXp3", "elevation": -3965.965, "temperature": 94.90831060913342, "vertical_depth": 3990.965}, {"gradient": 4.255197045178602, "_id": "drn5ARW5JL", "elevation": -3974.819, "temperature": 94.94598612377143, "vertical_depth": 3999.819}, {"gradient": 4.20491776971795, "_id": "XZ6w1elQpo", "elevation": -3983.673, "temperature": 94.98321646570452, "vertical_depth": 4008.673}, {"gradient": 4.205392740662111, "_id": "BkzOyNb0aP", "elevation": -3992.526, "temperature": 95.0204468076376, "vertical_depth": 4017.526}, {"gradient": 4.15451056137617, "_id": "X531BMkjGA", "elevation": -4001.38, "temperature": 95.05723084414802, "vertical_depth": 4026.38}, {"gradient": 4.154510561376383, "_id": "LlWPXVZyGk", "elevation": -4010.234, "temperature": 95.09401488065845, "vertical_depth": 4035.234}, {"gradient": 4.104442647297263, "_id": "oZryGWgj7E", "elevation": -4019.087, "temperature": 95.13035151141497, "vertical_depth": 4044.087}, {"gradient": 4.103979077990027, "_id": "30eMzGPyyl", "elevation": -4027.941, "temperature": 95.1666881421715, "vertical_depth": 4052.941}, {"gradient": 4.05373764717406, "_id": "W0jApLelA9", "elevation": -4036.794, "temperature": 95.20257588156193, "vertical_depth": 4061.794}, {"gradient": 4.053279804656779, "_id": "b7VMkWGll5", "elevation": -4045.648, "temperature": 95.23846362095236, "vertical_depth": 4070.648}, {"gradient": 4.002441352883622, "_id": "jepNwqrEEe", "elevation": -4054.502, "temperature": 95.27390123669079, "vertical_depth": 4079.502}, {"gradient": 4.002893452889483, "_id": "3xREdDn11E", "elevation": -4063.355, "temperature": 95.30933885242922, "vertical_depth": 4088.355}, {"gradient": 3.951476279467187, "_id": "P71ADb5LeO", "elevation": -4072.209, "temperature": 95.34432522340762, "vertical_depth": 4097.209}, {"gradient": 3.951476279466984, "_id": "Y5k6Wrg0B5", "elevation": -4081.063, "temperature": 95.37931159438602, "vertical_depth": 4106.063}, {"gradient": 3.8596286228253804, "_id": "Mo79mRnv3o", "elevation": -4089.916, "temperature": 95.4134808865839, "vertical_depth": 4114.916}, {"gradient": 3.8591927036287723, "_id": "bZ7EbXGdr0", "elevation": -4098.77, "temperature": 95.44765017878183, "vertical_depth": 4123.77}, {"gradient": 3.7788447679397, "_id": "QM2lgON0RR", "elevation": -4107.623, "temperature": 95.4811042915124, "vertical_depth": 4132.623}, {"gradient": 3.7784179727380622, "_id": "BgmGMdJNm1", "elevation": -4116.477, "temperature": 95.51455840424302, "vertical_depth": 4141.477}, {"gradient": 3.7270881651038494, "_id": "4WArd1p3AJ", "elevation": -4125.331, "temperature": 95.54755804285685, "vertical_depth": 4150.331}, {"gradient": 3.727509162305104, "_id": "w5PR8b7Y2w", "elevation": -4134.184, "temperature": 95.58055768147074, "vertical_depth": 4159.184}, {"gradient": 3.6756322389753033, "_id": "bR516gGV5l", "elevation": -4143.038, "temperature": 95.61310172931462, "vertical_depth": 4168.038}, {"gradient": 3.675632238981346, "_id": "OY3NgWLaXk", "elevation": -4151.892, "temperature": 95.64564577715856, "vertical_depth": 4176.892}, {"gradient": 3.624465345771296, "_id": "KJ40LqRNM5", "elevation": -4160.745, "temperature": 95.67773316886468, "vertical_depth": 4185.745}, {"gradient": 3.6240559866854016, "_id": "1NyeZ4QjDB", "elevation": -4169.599, "temperature": 95.70982056057079, "vertical_depth": 4194.599}, {"gradient": 3.572354796117948, "_id": "JxAJ03NG8v", "elevation": -4178.453, "temperature": 95.74145018993562, "vertical_depth": 4203.453}, {"gradient": 3.57275831524784, "_id": "JmpYE7wrmw", "elevation": -4187.306, "temperature": 95.7730798193005, "vertical_depth": 4212.306}, {"gradient": 3.5205239319024724, "_id": "bzAQ4VegMB", "elevation": -4196.16, "temperature": 95.80425053819357, "vertical_depth": 4221.16}, {"gradient": 3.520921596408942, "_id": "WDmkwBPvLL", "elevation": -4205.013, "temperature": 95.83542125708658, "vertical_depth": 4230.013}, {"gradient": 3.4685643952317307, "_id": "gk2WJjnej4", "elevation": -4213.867, "temperature": 95.86613192624196, "vertical_depth": 4238.867}, {"gradient": 3.4685643952320864, "_id": "KkDgLNKv5g", "elevation": -4222.721, "temperature": 95.89684259539735, "vertical_depth": 4247.721}, {"gradient": 3.416852392376942, "_id": "pK7rm59wJX", "elevation": -4231.574, "temperature": 95.92709198962706, "vertical_depth": 4256.574}, {"gradient": 3.4164664817836425, "_id": "K8AVvJqGQe", "elevation": -4240.428, "temperature": 95.95734138385677, "vertical_depth": 4265.428}, {"gradient": 3.3642277510790466, "_id": "Qm9B0w3Wwb", "elevation": -4249.282, "temperature": 95.98712825636483, "vertical_depth": 4274.282}, {"gradient": 3.364607760997561, "_id": "68kJN59nB3", "elevation": -4258.135, "temperature": 96.01691512887294, "vertical_depth": 4283.135}, {"gradient": 3.3118658582771485, "_id": "zn9JMvm3ze", "elevation": -4266.989, "temperature": 96.04623838918212, "vertical_depth": 4291.989}, {"gradient": 3.3122399535957907, "_id": "aonmpRQPYa", "elevation": -4275.842, "temperature": 96.0755616494913, "vertical_depth": 4300.842}, {"gradient": 3.2593825771240024, "_id": "dzDrlPXKjp", "elevation": -4284.696, "temperature": 96.10442022282916, "vertical_depth": 4309.696}, {"gradient": 3.2593825771240024, "_id": "1B7Ab05WPY", "elevation": -4293.55, "temperature": 96.13327879616702, "vertical_depth": 4318.55}, {"gradient": 3.2071407904883724, "_id": "MaB2OZVdbp", "elevation": -4302.403, "temperature": 96.16167161358521, "vertical_depth": 4327.403}, {"gradient": 3.206778565409869, "_id": "91rgblPyv2", "elevation": -4311.257, "temperature": 96.19006443100335, "vertical_depth": 4336.257}, {"gradient": 3.154054079647854, "_id": "PRkD6P5Bvl", "elevation": -4320.111, "temperature": 96.21799042582455, "vertical_depth": 4345.111}, {"gradient": 3.154410349170083, "_id": "42MRLD5OY1", "elevation": -4328.964, "temperature": 96.24591642064576, "vertical_depth": 4353.964}, {"gradient": 3.1012058706090313, "_id": "1GPAxE6YRy", "elevation": -4337.818, "temperature": 96.27337449742413, "vertical_depth": 4362.818}, {"gradient": 3.10120587061577, "_id": "03bw5418Xo", "elevation": -4346.672, "temperature": 96.30083257420256, "vertical_depth": 4371.672}, {"gradient": 3.048582407036106, "_id": "WvBNJMQm4J", "elevation": -4355.525, "temperature": 96.32782167425205, "vertical_depth": 4380.525}, {"gradient": 3.048238090071157, "_id": "LakzBRlOE8", "elevation": -4364.379, "temperature": 96.35481077430154, "vertical_depth": 4389.379}, {"gradient": 2.995489978107052, "_id": "zKjldDPewZ", "elevation": -4373.232, "temperature": 96.38132984707772, "vertical_depth": 4398.232}, {"gradient": 2.995151657576364, "_id": "4aGv0A587g", "elevation": -4382.086, "temperature": 96.4078489198539, "vertical_depth": 4407.086}, {"gradient": 2.94194375940782, "_id": "4yrOdDlnQb", "elevation": -4390.94, "temperature": 96.4338968898997, "vertical_depth": 4415.94}, {"gradient": 2.942276069783662, "_id": "e60rbwdOav", "elevation": -4399.793, "temperature": 96.4599448599455, "vertical_depth": 4424.793}, {"gradient": 2.8886194034223127, "_id": "7l0xgaZvWl", "elevation": -4408.647, "temperature": 96.4855206961434, "vertical_depth": 4433.647}, {"gradient": 2.8886194034223127, "_id": "17138knazN", "elevation": -4417.501, "temperature": 96.5110965323413, "vertical_depth": 4442.501}, {"gradient": 2.835500151109089, "_id": "J4X6JV5pxw", "elevation": -4426.354, "temperature": 96.53619921517907, "vertical_depth": 4451.354}, {"gradient": 2.8351799003581166, "_id": "Wwzjn6Mm9R", "elevation": -4435.208, "temperature": 96.56130189801684, "vertical_depth": 4460.208}, {"gradient": 2.7819397466470916, "_id": "xb5jNPGLem", "elevation": -4444.061, "temperature": 96.5859304105939, "vertical_depth": 4469.061}, {"gradient": 2.7816255451847907, "_id": "5qlL3d47g6", "elevation": -4452.915, "temperature": 96.61055892317097, "vertical_depth": 4477.915}, {"gradient": 2.727953930930461, "_id": "n34xOrdRG7", "elevation": -4461.769, "temperature": 96.63471222727543, "vertical_depth": 4486.769}, {"gradient": 2.728262069858676, "_id": "WrKoLpQDqY", "elevation": -4470.622, "temperature": 96.65886553137989, "vertical_depth": 4495.622}, {"gradient": 2.651002476290744, "_id": "v8Bw72E3bk", "elevation": -4479.476, "temperature": 96.68233750730496, "vertical_depth": 4504.476}, {"gradient": 2.6510024762904716, "_id": "2yAbDaw1GZ", "elevation": -4488.33, "temperature": 96.70580948323004, "vertical_depth": 4513.33}, {"gradient": 2.5051845032826443, "_id": "oErRQG1JMb", "elevation": -4497.183, "temperature": 96.7279878816376, "vertical_depth": 4522.183}, {"gradient": 2.5049015594715094, "_id": "gqMmrQaNY4", "elevation": -4506.037, "temperature": 96.75016628004516, "vertical_depth": 4531.037}, {"gradient": 2.451335714230436, "_id": "N6o9LKm0Mm", "elevation": -4514.891, "temperature": 96.77187040645896, "vertical_depth": 4539.891}, {"gradient": 2.4516126074544844, "_id": "BqpDo0Z9PK", "elevation": -4523.744, "temperature": 96.79357453287275, "vertical_depth": 4548.744}, {"gradient": 2.396775460292419, "_id": "WNxvYqk3g1", "elevation": -4532.598, "temperature": 96.81479558279818, "vertical_depth": 4557.598}, {"gradient": 2.3970461906053955, "_id": "5nb18eWzK9", "elevation": -4541.451, "temperature": 96.83601663272361, "vertical_depth": 4566.451}, {"gradient": 2.278488853309193, "_id": "8vnrd7mbAo", "elevation": -4550.305, "temperature": 96.85619037303081, "vertical_depth": 4575.305}, {"gradient": 2.2784888533030068, "_id": "vLrE5a6vmL", "elevation": -4559.159, "temperature": 96.87636411333796, "vertical_depth": 4584.159}, {"gradient": 2.2248658375890695, "_id": "y2YloBveNx", "elevation": -4568.012, "temperature": 96.89606085059813, "vertical_depth": 4593.012}, {"gradient": 2.224614553900206, "_id": "8OV8Jr30xw", "elevation": -4576.866, "temperature": 96.91575758785837, "vertical_depth": 4601.866}, {"gradient": 2.1706362178863725, "_id": "MDjdVzabmw", "elevation": -4585.72, "temperature": 96.93497640093153, "vertical_depth": 4610.72}, {"gradient": 2.1708814044079103, "_id": "n0VGXnleY3", "elevation": -4594.573, "temperature": 96.95419521400476, "vertical_depth": 4619.573}, {"gradient": 2.116559202140601, "_id": "4W0nmJZGzk", "elevation": -4603.427, "temperature": 96.97293522918051, "vertical_depth": 4628.427}, {"gradient": 2.1167982803224374, "_id": "rkvye4EpbQ", "elevation": -4612.28, "temperature": 96.9916752443562, "vertical_depth": 4637.28}, {"gradient": 2.0623786489767157, "_id": "be3AjDbWbd", "elevation": -4621.134, "temperature": 97.00993554491424, "vertical_depth": 4646.134}, {"gradient": 2.062378648983136, "_id": "Wgb6MjOQOA", "elevation": -4629.988, "temperature": 97.02819584547234, "vertical_depth": 4654.988}, {"gradient": 2.0083031752583715, "_id": "LoPrbLOaXj", "elevation": -4638.841, "temperature": 97.0459753534829, "vertical_depth": 4663.841}, {"gradient": 2.008076350865573, "_id": "qrLVN6nAnw", "elevation": -4647.695, "temperature": 97.06375486149346, "vertical_depth": 4672.695}, {"gradient": 1.9536794172763883, "_id": "ep4yRE8wl0", "elevation": -4656.549, "temperature": 97.08105273905403, "vertical_depth": 4681.549}, {"gradient": 1.9539000972125133, "_id": "grPpmg9eBW", "elevation": -4665.402, "temperature": 97.09835061661465, "vertical_depth": 4690.402}, {"gradient": 1.8991921602010493, "_id": "xXMnkvz5y9", "elevation": -4674.256, "temperature": 97.11516606400107, "vertical_depth": 4699.256}, {"gradient": 1.8991921601948243, "_id": "EyDP7ZG0L8", "elevation": -4683.11, "temperature": 97.13198151138744, "vertical_depth": 4708.11}, {"gradient": 1.8448229431231067, "_id": "EVOb1KDP90", "elevation": -4691.963, "temperature": 97.1483137289029, "vertical_depth": 4716.963}, {"gradient": 1.8446145827274099, "_id": "PoQmPXDLP8", "elevation": -4700.817, "temperature": 97.16464594641837, "vertical_depth": 4725.817}, {"gradient": 1.7901494027997262, "_id": "99NrQm4aLm", "elevation": -4709.67, "temperature": 97.18049413908136, "vertical_depth": 4734.67}, {"gradient": 1.7899472174206523, "_id": "MRQ32yvoLv", "elevation": -4718.524, "temperature": 97.1963423317444, "vertical_depth": 4743.524}, {"gradient": 1.735197123047146, "_id": "1nDem9Blyy", "elevation": -4727.378, "temperature": 97.21170576707186, "vertical_depth": 4752.378}, {"gradient": 1.735393124083932, "_id": "KbGV4Eg6NG", "elevation": -4736.231, "temperature": 97.22706920239938, "vertical_depth": 4761.231}, {"gradient": 1.6803671375079436, "_id": "RMo7lPRzv6", "elevation": -4745.085, "temperature": 97.24194717303487, "vertical_depth": 4770.085}, {"gradient": 1.6803671375143636, "_id": "0lpOjM5oQE", "elevation": -4753.939, "temperature": 97.25682514367043, "vertical_depth": 4778.939}, {"gradient": 0.7961218431993952, "_id": "Z1aLyEkw5N", "elevation": -4754.027, "temperature": 97.25689520239263, "vertical_depth": 4779.027}, {"gradient": 0.7871766539481355, "_id": "XwrGE3da8b", "elevation": -4754.116, "temperature": 97.25696526111483, "vertical_depth": 4779.116}, {"gradient": 0.6026466460976037, "_id": "6xvwKZMdgL", "elevation": -4762.678, "temperature": 97.26212512169872, "vertical_depth": 4787.678}, {"gradient": 0.6026466461042427, "_id": "RzOGrNQ284", "elevation": -4771.24, "temperature": 97.26728498228266, "vertical_depth": 4796.24}, {"gradient": 0.5772805056788612, "_id": "2kKoRmg97M", "elevation": -4779.801, "temperature": 97.27222708069178, "vertical_depth": 4804.801}, {"gradient": 0.5772130821273046, "_id": "ZYrBx2oQ3D", "elevation": -4788.363, "temperature": 97.27716917910095, "vertical_depth": 4813.363}, {"gradient": 0.5517449765119544, "_id": "oXPZprR9wz", "elevation": -4796.925, "temperature": 97.28189321958985, "vertical_depth": 4821.925}, {"gradient": 0.5518094251717635, "_id": "eWavlM4G3k", "elevation": -4805.486, "temperature": 97.28661726007874, "vertical_depth": 4830.486}, {"gradient": 0.5262440888149533, "_id": "oVAyoakM17", "elevation": -4814.048, "temperature": 97.29112296196718, "vertical_depth": 4839.048}, {"gradient": 0.5262440888215925, "_id": "6z2DnAjVPK", "elevation": -4822.61, "temperature": 97.29562866385567, "vertical_depth": 4847.61}, {"gradient": 0.5007697065816737, "_id": "gBE3wldxvX", "elevation": -4831.171, "temperature": 97.29991575331371, "vertical_depth": 4856.171}, {"gradient": 0.500711219106426, "_id": "j47GqzXvep", "elevation": -4839.733, "temperature": 97.3042028427717, "vertical_depth": 4864.733}, {"gradient": 0.47514690180214475, "_id": "xXZl4vDN8M", "elevation": -4848.295, "temperature": 97.30827105054493, "vertical_depth": 4873.295}, {"gradient": 0.4752024031406265, "_id": "yzPN3bZgx8", "elevation": -4856.856, "temperature": 97.31233925831822, "vertical_depth": 4881.856}, {"gradient": 0.44322193770554746, "_id": "Dbk0xwNl6W", "elevation": -4865.418, "temperature": 97.31613412454885, "vertical_depth": 4890.418}, {"gradient": 0.44327370991446574, "_id": "RZYbzgjdbA", "elevation": -4873.979, "temperature": 97.31992899077943, "vertical_depth": 4898.979}, {"gradient": 0.41656978969693165, "_id": "pywjV1Q3jR", "elevation": -4882.541, "temperature": 97.32349566131882, "vertical_depth": 4907.541}, {"gradient": 0.41656978969029257, "_id": "NZGRk0NORj", "elevation": -4891.103, "temperature": 97.32706233185814, "vertical_depth": 4916.103}, {"gradient": 0.39122689763448626, "_id": "rO08xrK486", "elevation": -4899.664, "temperature": 97.3304116253288, "vertical_depth": 4924.664}, {"gradient": 0.39118120424031777, "_id": "Bn8WNlQjWo", "elevation": -4908.226, "temperature": 97.3337609187995, "vertical_depth": 4933.226}, {"gradient": 0.3657639787296859, "_id": "rroj8zqOWZ", "elevation": -4916.788, "temperature": 97.33689258998538, "vertical_depth": 4941.788}, {"gradient": 0.36580670317524966, "_id": "wVKeEOPkkN", "elevation": -4925.349, "temperature": 97.34002426117127, "vertical_depth": 4950.349}, {"gradient": 0.3403188624133466, "_id": "Ejeq7YPzyj", "elevation": -4933.911, "temperature": 97.34293807127125, "vertical_depth": 4958.911}, {"gradient": 0.3403188624133466, "_id": "Qgb1OZrYn6", "elevation": -4942.473, "temperature": 97.34585188137123, "vertical_depth": 4967.473}, {"gradient": 0.3148834471891706, "_id": "3aGPJY09zg", "elevation": -4951.034, "temperature": 97.34854759856262, "vertical_depth": 4976.034}, {"gradient": 0.3148466703324487, "_id": "7AdrqR2O87", "elevation": -4959.596, "temperature": 97.351243315754, "vertical_depth": 4984.596}, {"gradient": 0.2893482904911064, "_id": "67eEWd8pxM", "elevation": -4968.158, "temperature": 97.35372071581719, "vertical_depth": 4993.158}, {"gradient": 0.2893820889197546, "_id": "Nymkqz4Xny", "elevation": -4976.719, "temperature": 97.35619811588043, "vertical_depth": 5001.719}, {"gradient": 0.2595827537954818, "_id": "2WdEVLZBdn", "elevation": -4985.281, "temperature": 97.35842066341843, "vertical_depth": 5010.281}, {"gradient": 0.2595827537954818, "_id": "gGKMLEN3Dn", "elevation": -4993.843, "temperature": 97.36064321095643, "vertical_depth": 5018.843}, {"gradient": 0.17688145482912088, "_id": "aKMlxb2XQn", "elevation": -5002.404, "temperature": 97.36215749309122, "vertical_depth": 5027.404}, {"gradient": 0.17686079592798243, "_id": "dbB7DZApoB", "elevation": -5010.966, "temperature": 97.36367177522595, "vertical_depth": 5035.966}, {"gradient": 0.15133980040600167, "_id": "bJV4EopxVw", "elevation": -5019.528, "temperature": 97.36496754659703, "vertical_depth": 5044.528}, {"gradient": 0.15135747822406462, "_id": "2YonKZyaj6", "elevation": -5028.089, "temperature": 97.3662633179681, "vertical_depth": 5053.089}, {"gradient": 0.12579678147167642, "_id": "Y3rJv2ql4l", "elevation": -5036.651, "temperature": 97.36734039001107, "vertical_depth": 5061.651}, {"gradient": 0.12579678147167642, "_id": "Kw29vMxENG", "elevation": -5045.213, "temperature": 97.36841746205403, "vertical_depth": 5070.213}, {"gradient": 0.10024461466334691, "_id": "3o4RZE1KEj", "elevation": -5053.774, "temperature": 97.36927565620016, "vertical_depth": 5078.774}, {"gradient": 0.10023290657941877, "_id": "dkZqGW3lb5", "elevation": -5062.336, "temperature": 97.37013385034629, "vertical_depth": 5087.336}, {"gradient": 0.07464980751775847, "_id": "Kb3vXDP2bA", "elevation": -5070.898, "temperature": 97.37077300199826, "vertical_depth": 5095.898}, {"gradient": 0.07465852727100376, "_id": "Lx8X4yk0dx", "elevation": -5079.459, "temperature": 97.37141215365023, "vertical_depth": 5104.459}, {"gradient": 0.049049338469624296, "_id": "gBndoDgR9a", "elevation": -5088.021, "temperature": 97.3718321140862, "vertical_depth": 5113.021}, {"gradient": 0.049049338469624296, "_id": "WQ8gVwB3AY", "elevation": -5096.583, "temperature": 97.37225207452218, "vertical_depth": 5121.583}, {"gradient": 0.023436263660476048, "_id": "gmOKaExD91", "elevation": -5105.144, "temperature": 97.37245271237538, "vertical_depth": 5130.144}, {"gradient": 0.023433526418751693, "_id": "lyK5qbJvjd", "elevation": -5113.706, "temperature": 97.37265335022857, "vertical_depth": 5138.706}, {"gradient": -0.0021953319270433306, "_id": "gjWV2qlPZP", "elevation": -5122.268, "temperature": 97.37263455379662, "vertical_depth": 5147.268}, {"gradient": -0.0021955883610963022, "_id": "eMxvnYNe9P", "elevation": -5130.829, "temperature": 97.37261575736466, "vertical_depth": 5155.829}, {"gradient": -0.02783461626673305, "_id": "E8BXLQONwG", "elevation": -5139.391, "temperature": 97.37237743738018, "vertical_depth": 5164.391}, {"gradient": -0.02783786759441055, "_id": "n61ka8xKE7", "elevation": -5147.952, "temperature": 97.3721391173957, "vertical_depth": 5172.952}, {"gradient": -0.053481313540609934, "_id": "xLlGDn6Vyw", "elevation": -5156.514, "temperature": 97.37168121038917, "vertical_depth": 5181.514}, {"gradient": -0.053481313540609934, "_id": "WnJ49WXAxN", "elevation": -5165.076, "temperature": 97.37122330338264, "vertical_depth": 5190.076}, {"gradient": -0.07914117119596824, "_id": "GGA3QV4W5d", "elevation": -5173.637, "temperature": 97.37054577581603, "vertical_depth": 5198.637}, {"gradient": -0.07913192788505309, "_id": "yVKJZea2GO", "elevation": -5182.199, "temperature": 97.36986824824947, "vertical_depth": 5207.199}, {"gradient": -0.10478236134897276, "_id": "1gnLQ0GNkd", "elevation": -5190.761, "temperature": 97.3689711016716, "vertical_depth": 5215.761}, {"gradient": -0.10479460085584218, "_id": "VLyg56Y8Od", "elevation": -5199.322, "temperature": 97.36807395509368, "vertical_depth": 5224.322}, {"gradient": -2.212390338526558, "_id": "kAenOd0WGy", "elevation": -5199.411, "temperature": 97.36787705235355, "vertical_depth": 5224.411}, {"gradient": -2.212390338526558, "_id": "NxWbYKEGo1", "elevation": -5199.5, "temperature": 97.36768014961342, "vertical_depth": 5224.5}, {"gradient": -2.6477309375586526, "_id": "YajbgR2656", "elevation": -5207.184, "temperature": 97.34733498508922, "vertical_depth": 5232.184}, {"gradient": -2.6473864052313023, "_id": "09v7a4JVm9", "elevation": -5214.869, "temperature": 97.32698982056502, "vertical_depth": 5239.869}, {"gradient": -2.6717872768911475, "_id": "YWVlQKN8PR", "elevation": -5222.553, "temperature": 97.30645980712939, "vertical_depth": 5247.553}, {"gradient": -2.6717872768911475, "_id": "DVnb9OJkdM", "elevation": -5230.237, "temperature": 97.28592979369375, "vertical_depth": 5255.237}, {"gradient": -2.6806539411815846, "_id": "RWPwX6bB8j", "elevation": -5230.326, "temperature": 97.28569121549299, "vertical_depth": 5255.326}, {"gradient": -2.6806539411815846, "_id": "wyYLbWpmev", "elevation": -5230.415, "temperature": 97.28545263729222, "vertical_depth": 5255.415}, {"gradient": -2.69752479040171, "_id": "p1EGxJ2j67", "elevation": -5238.284, "temperature": 97.26422581471655, "vertical_depth": 5263.284}, {"gradient": -2.6971820299451146, "_id": "4YPm5BoM8J", "elevation": -5246.154, "temperature": 97.24299899214088, "vertical_depth": 5271.154}, {"gradient": -2.7219979773011067, "_id": "eWwengadA7", "elevation": -5254.023, "temperature": 97.2215795900575, "vertical_depth": 5279.023}, {"gradient": -2.7219979773011067, "_id": "60923Lepqa", "elevation": -5261.892, "temperature": 97.20016018797412, "vertical_depth": 5286.892}, {"gradient": -2.7460801986347163, "_id": "Ke6yo2LGrL", "elevation": -5269.762, "temperature": 97.17854853681087, "vertical_depth": 5294.762}, {"gradient": -2.7464291731164416, "_id": "AgRLzjqpeY", "elevation": -5277.631, "temperature": 97.15693688564761, "vertical_depth": 5302.631}, {"gradient": -2.7704501640836545, "_id": "2ybjoN9dq1", "elevation": -5285.501, "temperature": 97.13513344285627, "vertical_depth": 5310.501}, {"gradient": -2.770802235524072, "_id": "8A2kPJmwvn", "elevation": -5293.37, "temperature": 97.11333000006493, "vertical_depth": 5318.37}, {"gradient": -2.795094923655929, "_id": "ov9qmej35p", "elevation": -5301.239, "temperature": 97.09133539811069, "vertical_depth": 5326.239}, {"gradient": -2.794739765476777, "_id": "XlnVKZ0yvj", "elevation": -5309.109, "temperature": 97.06934079615638, "vertical_depth": 5334.109}, {"gradient": -2.8192748037150785, "_id": "qQwLX8O6je", "elevation": -5316.978, "temperature": 97.04715592272595, "vertical_depth": 5341.978}, {"gradient": -2.8192748037223025, "_id": "BrjKXB4xnN", "elevation": -5324.847, "temperature": 97.02497104929546, "vertical_depth": 5349.847}, {"gradient": -2.842929202568852, "_id": "vG8kemZ4zo", "elevation": -5332.717, "temperature": 97.00259719647124, "vertical_depth": 5357.717}, {"gradient": -2.8432904847212734, "_id": "Y0b2DnzaA4", "elevation": -5340.586, "temperature": 96.98022334364697, "vertical_depth": 5365.586}, {"gradient": 0.16714761649689408, "_id": "zGrALjNdVO", "elevation": -5340.675, "temperature": 96.98023821978484, "vertical_depth": 5365.675}, {"gradient": 0.167147615858204, "_id": "d7mLxoADnA", "elevation": -5340.764, "temperature": 96.98025309592265, "vertical_depth": 5365.764}, {"gradient": 0.761586157366382, "_id": "BQxjBLp14y", "elevation": -5346.928, "temperature": 96.98494751299665, "vertical_depth": 5371.928}, {"gradient": 0.761586157375604, "_id": "J1A5eaPreQ", "elevation": -5353.092, "temperature": 96.98964193007072, "vertical_depth": 5378.092}, {"gradient": 0.7411448059873743, "_id": "GJ6ng4rPaL", "elevation": -5359.256, "temperature": 96.99421034665482, "vertical_depth": 5384.256}, {"gradient": 0.74114480596904, "_id": "EVOlAz6M6X", "elevation": -5365.42, "temperature": 96.99877876323882, "vertical_depth": 5390.42}, {"gradient": 0.7206773265366391, "_id": "Y5mkWJNVN9", "elevation": -5371.584, "temperature": 97.00322101827959, "vertical_depth": 5396.584}, {"gradient": 0.7206773265366391, "_id": "eDvyzgL4ey", "elevation": -5377.748, "temperature": 97.00766327332036, "vertical_depth": 5402.748}, {"gradient": 0.7532684688167745, "_id": "LV9A6DOGXA", "elevation": -5377.837, "temperature": 97.00773031421409, "vertical_depth": 5402.837}, {"gradient": 0.7532684688244722, "_id": "W0VLo4WMoK", "elevation": -5377.926, "temperature": 97.00779735510781, "vertical_depth": 5402.926}, {"gradient": 0.6881579203211412, "_id": "1x9AKLrPNE", "elevation": -5386.599, "temperature": 97.01376574875076, "vertical_depth": 5411.599}, {"gradient": 0.6881579203211412, "_id": "O35REgZkEr", "elevation": -5395.272, "temperature": 97.0197341423937, "vertical_depth": 5420.272}, {"gradient": 0.5575084493920595, "_id": "mzZpya4L6L", "elevation": -5403.946, "temperature": 97.02456997068373, "vertical_depth": 5428.946}, {"gradient": 0.5575727303155583, "_id": "xaR0OZQ6OX", "elevation": -5412.619, "temperature": 97.02940579897376, "vertical_depth": 5437.619}, {"gradient": 0.4681976992702884, "_id": "JgvXN01wVD", "elevation": -5421.292, "temperature": 97.03346647761953, "vertical_depth": 5446.292}, {"gradient": 0.4681437221383889, "_id": "0neMXP5KXD", "elevation": -5429.966, "temperature": 97.03752715626536, "vertical_depth": 5454.966}, {"gradient": 0.39596438612647594, "_id": "kb0kOR43Ne", "elevation": -5438.639, "temperature": 97.04096135538623, "vertical_depth": 5463.639}, {"gradient": 0.39591873654807497, "_id": "DoRa1A8qj8", "elevation": -5447.313, "temperature": 97.04439555450705, "vertical_depth": 5472.313}, {"gradient": 0.32349091659665713, "_id": "z0QNWBdb5E", "elevation": -5455.986, "temperature": 97.04720119122669, "vertical_depth": 5480.986}, {"gradient": 0.3234909165901031, "_id": "ljBnGaP83A", "elevation": -5464.659, "temperature": 97.05000682794628, "vertical_depth": 5489.659}, {"gradient": 0.25074761325383704, "_id": "2gdvmX4jlY", "elevation": -5473.333, "temperature": 97.05218181274364, "vertical_depth": 5498.333}, {"gradient": 0.2507765245432498, "_id": "Omol4dre58", "elevation": -5482.006, "temperature": 97.054356797541, "vertical_depth": 5507.006}, {"gradient": 0.17782044163966965, "_id": "KR9ja8w0ld", "elevation": -5490.679, "temperature": 97.05589903423135, "vertical_depth": 5515.679}, {"gradient": 0.17779994124288895, "_id": "Nm5RX4M0Lw", "elevation": -5499.353, "temperature": 97.05744127092169, "vertical_depth": 5524.353}, {"gradient": 0.10462189748153553, "_id": "omAB6MJKzm", "elevation": -5508.026, "temperature": 97.05834865663854, "vertical_depth": 5533.026}, {"gradient": 0.10460983592350621, "_id": "5wxgGPEqMp", "elevation": -5516.7, "temperature": 97.05925604235534, "vertical_depth": 5541.7}, {"gradient": 0.031180119527945832, "_id": "mqN5zK9A4q", "elevation": -5525.373, "temperature": 97.05952646753201, "vertical_depth": 5550.373}, {"gradient": 0.031180119527942567, "_id": "7bRABl1Ygg", "elevation": -5534.046, "temperature": 97.05979689270868, "vertical_depth": 5559.046}, {"gradient": -0.04250076657784487, "_id": "RdyNA4BvmX", "elevation": -5542.72, "temperature": 97.05942824105938, "vertical_depth": 5567.72}, {"gradient": -0.0425056669314234, "_id": "qRk75NlG7G", "elevation": -5551.393, "temperature": 97.05905958941008, "vertical_depth": 5576.393}, {"gradient": -0.11643623869108925, "_id": "Q02qKaVd76", "elevation": -5560.066, "temperature": 97.05804973791192, "vertical_depth": 5585.066}, {"gradient": -0.11642281510544579, "_id": "057BmnE98r", "elevation": -5568.74, "temperature": 97.05703988641369, "vertical_depth": 5593.74}, {"gradient": -0.19061237475428924, "_id": "k8n52ErO5M", "elevation": -5577.413, "temperature": 97.05538670528745, "vertical_depth": 5602.413}, {"gradient": -0.19059039960651317, "_id": "GGql6v19Ra", "elevation": -5586.087, "temperature": 97.05373352416126, "vertical_depth": 5611.087}, {"gradient": -0.26503485621500816, "_id": "RQb3EL41lK", "elevation": -5594.76, "temperature": 97.0514348768533, "vertical_depth": 5619.76}, {"gradient": -0.26503485621500816, "_id": "MxaEpGd1Ar", "elevation": -5603.433, "temperature": 97.04913622954535, "vertical_depth": 5628.433}, {"gradient": -0.3396653028123515, "_id": "XDax6PBZXZ", "elevation": -5612.107, "temperature": 97.04618997270876, "vertical_depth": 5637.107}, {"gradient": -0.33970446634318074, "_id": "r4DKjZQ2VX", "elevation": -5620.78, "temperature": 97.04324371587217, "vertical_depth": 5645.78}, {"gradient": -0.41462199058464844, "_id": "Nj1p7Pw66Z", "elevation": -5629.453, "temperature": 97.03964769934782, "vertical_depth": 5654.453}, {"gradient": -0.4145741900258364, "_id": "2dAEwaXkgX", "elevation": -5638.127, "temperature": 97.03605168282354, "vertical_depth": 5663.127}, {"gradient": -0.4897882164958359, "_id": "K80LWDNrGG", "elevation": -5646.8, "temperature": 97.03180374962187, "vertical_depth": 5671.8}, {"gradient": -0.48978821650239, "_id": "pv3gNYeXXA", "elevation": -5655.473, "temperature": 97.02755581642015, "vertical_depth": 5680.473}, {"gradient": -0.5651387731521799, "_id": "9A3rvpdL3M", "elevation": -5664.147, "temperature": 97.02265380270183, "vertical_depth": 5689.147}, {"gradient": -0.5652039338481818, "_id": "qPa1ZxqMrO", "elevation": -5672.82, "temperature": 97.01775178898356, "vertical_depth": 5697.82}, {"gradient": -0.6407960505427945, "_id": "AWm7rXDN3y", "elevation": -5681.494, "temperature": 97.01219352404115, "vertical_depth": 5706.494}, {"gradient": -0.6408699345564105, "_id": "jmln3Rpvl1", "elevation": -5690.167, "temperature": 97.00663525909874, "vertical_depth": 5715.167}, {"gradient": -0.7167870127048684, "_id": "zw9lPq64DG", "elevation": -5698.84, "temperature": 97.00041856533755, "vertical_depth": 5723.84}, {"gradient": -0.7167043764340764, "_id": "pWqMX9dkWy", "elevation": -5707.514, "temperature": 96.99420187157637, "vertical_depth": 5732.514}]}, {"is_default": false, "name": "COP/COI (Prod GL PA)", "calculated_from": "Daq40oro2q-5", "source": "GRADIENT", "_id": "4wJoVX5gYp", "data": [{"gradient": 0, "elevation": -2047, "temperature": 81.2483036286734, "vertical_depth": 2072}, {"gradient": 45.14198319468935, "elevation": -2053.685, "temperature": 81.5500777863299, "vertical_depth": 2078.685}, {"gradient": 78.97468352413368, "elevation": -2060.369, "temperature": 82.07794457100522, "vertical_depth": 2085.369}, {"gradient": 62.45155265870347, "elevation": -2067.05, "temperature": 82.49518339431802, "vertical_depth": 2092.05}, {"gradient": 35.818847584381665, "elevation": -2073.729, "temperature": 82.73441747733409, "vertical_depth": 2098.729}, {"gradient": 49.38843829745219, "elevation": -2080.405, "temperature": 83.0641346914079, "vertical_depth": 2105.405}, {"gradient": 28.44387525447271, "elevation": -2087.08, "temperature": 83.2539975587315, "vertical_depth": 2112.08}, {"gradient": -6975.343667014705, "elevation": -2087.18, "temperature": 82.55646319203066, "vertical_depth": 2112.18}, {"gradient": 91.34261999373359, "elevation": -2087.28, "temperature": 82.56559745403007, "vertical_depth": 2112.28}, {"gradient": 40.7768044857013, "elevation": -2096.532, "temperature": 82.94286444913178, "vertical_depth": 2121.532}, {"gradient": 64.08009870762325, "elevation": -2105.785, "temperature": 83.5357976024734, "vertical_depth": 2130.785}, {"gradient": 41.92521966319565, "elevation": -2115.037, "temperature": 83.92368973479728, "vertical_depth": 2140.037}, {"gradient": 27.09716775325446, "elevation": -2124.289, "temperature": 84.1743927308504, "vertical_depth": 2149.289}, {"gradient": 18.384659067296226, "elevation": -2133.542, "temperature": 84.34450598120009, "vertical_depth": 2158.542}, {"gradient": 27.798411235255532, "elevation": -2142.794, "temperature": 84.60169688194867, "vertical_depth": 2167.794}, {"gradient": 6.144342726207601, "elevation": -2142.894, "temperature": 84.60231131622129, "vertical_depth": 2167.894}, {"gradient": 6.245954486962561, "elevation": -2142.994, "temperature": 84.60293591166999, "vertical_depth": 2167.994}, {"gradient": 3.8661924484608043, "elevation": -2152.935, "temperature": 84.64136973080014, "vertical_depth": 2177.935}, {"gradient": 5.039679912624603, "elevation": -2162.876, "temperature": 84.69146918881154, "vertical_depth": 2187.876}, {"gradient": 5.8504909546774835, "elevation": -2172.816, "temperature": 84.74962306890103, "vertical_depth": 2197.816}, {"gradient": 5.260753395787406, "elevation": -2182.757, "temperature": 84.80192021840855, "vertical_depth": 2207.757}, {"gradient": 6.060046200683654, "elevation": -2192.698, "temperature": 84.86216313768955, "vertical_depth": 2217.698}, {"gradient": 6.3238065862575334, "elevation": -2202.639, "temperature": 84.92502809896354, "vertical_depth": 2227.639}, {"gradient": 6.5794553054186595, "elevation": -2212.58, "temperature": 84.9904344641547, "vertical_depth": 2237.58}, {"gradient": 6.499178206270594, "elevation": -2222.521, "temperature": 85.05504279470324, "vertical_depth": 2247.521}, {"gradient": 6.734843348527269, "elevation": -2232.462, "temperature": 85.12199387243095, "vertical_depth": 2257.462}, {"gradient": 6.711565404518244, "elevation": -2242.403, "temperature": 85.18871354411726, "vertical_depth": 2267.403}, {"gradient": 6.728879965877209, "elevation": -2252.344, "temperature": 85.25560533985805, "vertical_depth": 2277.344}, {"gradient": 6.633986396773278, "elevation": -2262.285, "temperature": 85.32155379862837, "vertical_depth": 2287.285}, {"gradient": 6.637340116063337, "elevation": -2272.226, "temperature": 85.38753559672216, "vertical_depth": 2297.226}, {"gradient": 6.760977976317213, "elevation": -2282.167, "temperature": 85.45474647878473, "vertical_depth": 2307.167}, {"gradient": 6.7728621731943965, "elevation": -2292.107, "temperature": 85.52206872878628, "vertical_depth": 2317.107}, {"gradient": 6.633061454516479, "elevation": -2302.048, "temperature": 85.58800799270563, "vertical_depth": 2327.048}, {"gradient": 6.618496904181154, "elevation": -2311.989, "temperature": 85.6538024704301, "vertical_depth": 2336.989}, {"gradient": 6.766471571308325, "elevation": -2321.93, "temperature": 85.72106796432047, "vertical_depth": 2346.93}, {"gradient": 6.751150786478192, "elevation": -2331.871, "temperature": 85.78818115428885, "vertical_depth": 2356.871}, {"gradient": 6.598074841489645, "elevation": -2341.812, "temperature": 85.8537726162881, "vertical_depth": 2366.812}, {"gradient": 6.574294181374331, "elevation": -2351.753, "temperature": 85.91912767474514, "vertical_depth": 2376.753}, {"gradient": 6.73033184625548, "elevation": -2361.694, "temperature": 85.98603390362877, "vertical_depth": 2386.694}, {"gradient": 6.706530139671343, "elevation": -2371.635, "temperature": 86.05270351974724, "vertical_depth": 2396.635}, {"gradient": 6.548743824077609, "elevation": -2381.576, "temperature": 86.1178045821024, "vertical_depth": 2406.576}, {"gradient": 6.522247421445992, "elevation": -2391.517, "temperature": 86.18264224371899, "vertical_depth": 2416.517}, {"gradient": 6.681777675364285, "elevation": -2401.457, "temperature": 86.24905911381211, "vertical_depth": 2426.457}, {"gradient": 6.494801123445733, "elevation": -2411.398, "temperature": 86.31362393178028, "vertical_depth": 2436.398}, {"gradient": 6.654383369336945, "elevation": -2421.339, "temperature": 86.37977515685486, "vertical_depth": 2446.339}, {"gradient": 6.627033944324532, "elevation": -2431.28, "temperature": 86.4456545012954, "vertical_depth": 2456.28}, {"gradient": 6.46694789371442, "elevation": -2441.221, "temperature": 86.50994243030681, "vertical_depth": 2466.221}, {"gradient": 6.4388349855022575, "elevation": -2451.162, "temperature": 86.57395088889768, "vertical_depth": 2476.162}, {"gradient": 6.59929987826918, "elevation": -2461.103, "temperature": 86.63955452898756, "vertical_depth": 2486.103}, {"gradient": 6.571319449451682, "elevation": -2471.044, "temperature": 86.70488001563456, "vertical_depth": 2496.044}, {"gradient": 6.410546316277913, "elevation": -2480.985, "temperature": 86.76860725656468, "vertical_depth": 2505.985}, {"gradient": 6.383528317748953, "elevation": -2490.926, "temperature": 86.83206591157142, "vertical_depth": 2515.926}, {"gradient": 6.545826643997409, "elevation": -2500.867, "temperature": 86.8971379742394, "vertical_depth": 2525.867}, {"gradient": 6.516895053634559, "elevation": -2510.808, "temperature": 86.96192242796758, "vertical_depth": 2535.808}, {"gradient": 6.355164248247281, "elevation": -2520.748, "temperature": 87.02509276059516, "vertical_depth": 2545.748}, {"gradient": 6.487296005531324, "elevation": -2530.689, "temperature": 87.08958297018614, "vertical_depth": 2555.689}, {"gradient": 6.3251771999365305, "elevation": -2540.63, "temperature": 87.15246155673071, "vertical_depth": 2565.63}, {"gradient": 6.296095260835036, "elevation": -2550.571, "temperature": 87.21505103971867, "vertical_depth": 2575.571}, {"gradient": 6.458182545120975, "elevation": -2560.512, "temperature": 87.27925183239972, "vertical_depth": 2585.512}, {"gradient": 6.429328871200557, "elevation": -2570.453, "temperature": 87.34316579070833, "vertical_depth": 2595.453}, {"gradient": 6.26713923275935, "elevation": -2580.394, "temperature": 87.40546742182119, "vertical_depth": 2605.394}, {"gradient": 6.238163338500308, "elevation": -2590.335, "temperature": 87.46748100356922, "vertical_depth": 2615.335}, {"gradient": 6.400476834337142, "elevation": -2600.276, "temperature": 87.53110814377936, "vertical_depth": 2625.276}, {"gradient": 6.2091927999140015, "elevation": -2610.217, "temperature": 87.59283372940331, "vertical_depth": 2635.217}, {"gradient": 6.3716797220255055, "elevation": -2620.158, "temperature": 87.65617459751996, "vertical_depth": 2645.158}, {"gradient": 6.342873592818333, "elevation": -2630.099, "temperature": 87.71922910390617, "vertical_depth": 2655.099}, {"gradient": 6.18081114748584, "elevation": -2640.039, "temperature": 87.78066636671218, "vertical_depth": 2665.039}, {"gradient": 6.151194273869781, "elevation": -2649.98, "temperature": 87.84181538898872, "vertical_depth": 2674.98}, {"gradient": 6.314139774781882, "elevation": -2659.921, "temperature": 87.90458425248983, "vertical_depth": 2684.921}, {"gradient": 6.121502200988097, "elevation": -2669.862, "temperature": 87.96543810586985, "vertical_depth": 2694.862}, {"gradient": 6.284791803590872, "elevation": -2679.803, "temperature": 88.02791522118935, "vertical_depth": 2704.803}, {"gradient": 6.241329232542219, "elevation": -2689.744, "temperature": 88.08996027509005, "vertical_depth": 2714.744}, {"gradient": 6.076025048170321, "elevation": -2699.685, "temperature": 88.15036204009391, "vertical_depth": 2724.685}, {"gradient": 6.127252958813976, "elevation": -2709.626, "temperature": 88.21127306175748, "vertical_depth": 2734.626}, {"gradient": 5.954317808651728, "elevation": -2719.567, "temperature": 88.27046493509329, "vertical_depth": 2744.567}, {"gradient": 5.919509710480566, "elevation": -2729.508, "temperature": 88.32931078112517, "vertical_depth": 2754.508}, {"gradient": 6.089025477094104, "elevation": -2739.449, "temperature": 88.38984178339297, "vertical_depth": 2764.449}, {"gradient": 5.887091055412538, "elevation": -2749.39, "temperature": 88.44836535557482, "vertical_depth": 2774.39}, {"gradient": 6.055389584511905, "elevation": -2759.33, "temperature": 88.50855592804487, "vertical_depth": 2784.33}, {"gradient": 5.935529581743989, "elevation": -2769.271, "temperature": 88.56756102761699, "vertical_depth": 2794.271}, {"gradient": 5.7591336954035794, "elevation": -2779.212, "temperature": 88.624812575683, "vertical_depth": 2804.212}, {"gradient": 5.684428972788898, "elevation": -2789.153, "temperature": 88.68132148410149, "vertical_depth": 2814.153}, {"gradient": 5.859403540714706, "elevation": -2799.094, "temperature": 88.73956981469973, "vertical_depth": 2824.094}, {"gradient": 5.82095945828257, "elevation": -2809.035, "temperature": 88.79743597267452, "vertical_depth": 2834.035}, {"gradient": 5.649417045690832, "elevation": -2818.976, "temperature": 88.85359682752573, "vertical_depth": 2843.976}, {"gradient": 2351.8655649557804, "elevation": -2819.076, "temperature": 89.0887833840211, "vertical_depth": 2844.076}, {"gradient": -0.34120232101062464, "elevation": -2819.176, "temperature": 89.088749263789, "vertical_depth": 2844.176}, {"gradient": 1.1544917054151234, "elevation": -2828.53, "temperature": 89.09954837920145, "vertical_depth": 2853.53}, {"gradient": -0.6546120898369668, "elevation": -2837.883, "temperature": 89.0934257923252, "vertical_depth": 2862.883}, {"gradient": 1.9557061801870812, "elevation": -2847.237, "temperature": 89.11171946793468, "vertical_depth": 2872.237}, {"gradient": 0.8426510995753672, "elevation": -2856.591, "temperature": 89.1196016263201, "vertical_depth": 2881.591}, {"gradient": 1.8144072034054672, "elevation": -2865.945, "temperature": 89.13657359130076, "vertical_depth": 2890.945}, {"gradient": 2.4716582170978008, "elevation": -2875.299, "temperature": 89.15969348226349, "vertical_depth": 2900.299}, {"gradient": -2712.434205631291, "elevation": -2875.399, "temperature": 88.88845006170061, "vertical_depth": 2900.399}, {"gradient": 1.287330071657806, "elevation": -2875.498, "temperature": 88.8885775073777, "vertical_depth": 2900.498}, {"gradient": 8.548372382268347, "elevation": -2883.604, "temperature": 88.95787061390837, "vertical_depth": 2908.604}, {"gradient": 10.673606128180431, "elevation": -2891.71, "temperature": 89.0443908651834, "vertical_depth": 2916.71}, {"gradient": 7.39279374393372, "elevation": -2899.815, "temperature": 89.10430945847799, "vertical_depth": 2924.815}, {"gradient": 8.784496602572057, "elevation": -2907.921, "temperature": 89.17551658793843, "vertical_depth": 2932.921}, {"gradient": 7.59417172899978, "elevation": -2916.026, "temperature": 89.23706734980198, "vertical_depth": 2941.026}, {"gradient": 6.659027864724217, "elevation": -2924.132, "temperature": 89.29104542967343, "vertical_depth": 2949.132}, {"gradient": 2362.4119105248724, "elevation": -2924.232, "temperature": 89.5272866207257, "vertical_depth": 2949.232}, {"gradient": 6.906965366919012, "elevation": -2924.331, "temperature": 89.52797041029703, "vertical_depth": 2949.331}, {"gradient": 0.04340235755725143, "elevation": -2932.568, "temperature": 89.52832791551623, "vertical_depth": 2957.568}, {"gradient": 1.4659401659317275, "elevation": -2940.805, "temperature": 89.54040286466301, "vertical_depth": 2965.805}, {"gradient": 1.132629953618923, "elevation": -2949.042, "temperature": 89.54973233759097, "vertical_depth": 2974.042}, {"gradient": 2.047322678908168, "elevation": -2957.28, "temperature": 89.56659818181981, "vertical_depth": 2982.28}, {"gradient": 1.8759313899025984, "elevation": -2965.517, "temperature": 89.58205022867844, "vertical_depth": 2990.517}, {"gradient": 2.4411570907649462, "elevation": -2973.754, "temperature": 89.60215803963507, "vertical_depth": 2998.754}, {"gradient": -10.588430833856105, "elevation": -2976.355, "temperature": 89.57461753103621, "vertical_depth": 3001.355}, {"gradient": 8.875457164779302, "elevation": -2978.956, "temperature": 89.5977025951218, "vertical_depth": 3003.956}, {"gradient": -443.195684004939, "elevation": -2979.056, "temperature": 89.55338302672135, "vertical_depth": 3004.056}, {"gradient": 4.7395787981984, "elevation": -2979.156, "temperature": 89.55385698460117, "vertical_depth": 3004.156}, {"gradient": 5.33579779439238, "elevation": -2987.456, "temperature": 89.59814410629463, "vertical_depth": 3012.456}, {"gradient": 5.148352948785508, "elevation": -2995.756, "temperature": 89.64087543576954, "vertical_depth": 3020.756}, {"gradient": 5.120030437407753, "elevation": -3004.056, "temperature": 89.68337168840003, "vertical_depth": 3029.056}, {"gradient": 5.307695170706577, "elevation": -3012.356, "temperature": 89.7274255583169, "vertical_depth": 3037.356}, {"gradient": 5.0922346191774785, "elevation": -3020.655, "temperature": 89.76968601342145, "vertical_depth": 3045.655}, {"gradient": 5.279486825042101, "elevation": -3028.955, "temperature": 89.8135057540693, "vertical_depth": 3053.955}, {"gradient": 5.251132115531558, "elevation": -3037.255, "temperature": 89.85709015062821, "vertical_depth": 3062.255}, {"gradient": 5.063104894784869, "elevation": -3045.555, "temperature": 89.89911392125492, "vertical_depth": 3070.555}, {"gradient": 38.71982777056485, "elevation": -3045.655, "temperature": 89.902985904032, "vertical_depth": 3070.655}, {"gradient": 66.69033449560784, "elevation": -3045.755, "temperature": 89.90965493748155, "vertical_depth": 3070.755}, {"gradient": 4.97141868451421, "elevation": -3055.689, "temperature": 89.95904101069351, "vertical_depth": 3080.689}, {"gradient": 5.15824899462962, "elevation": -3065.623, "temperature": 90.01028305620616, "vertical_depth": 3090.623}, {"gradient": 5.124505005461344, "elevation": -3075.557, "temperature": 90.06118988893041, "vertical_depth": 3100.557}, {"gradient": 4.937439104728953, "elevation": -3085.491, "temperature": 90.11023840899679, "vertical_depth": 3110.491}, {"gradient": 4.903386371297663, "elevation": -3095.425, "temperature": 90.15894864920926, "vertical_depth": 3120.425}, {"gradient": 5.090700667585122, "elevation": -3105.359, "temperature": 90.20951966964105, "vertical_depth": 3130.359}, {"gradient": 5.0567157624229635, "elevation": -3115.293, "temperature": 90.25975308402496, "vertical_depth": 3140.293}, {"gradient": 4.869194874297721, "elevation": -3125.227, "temperature": 90.30812366590624, "vertical_depth": 3150.227}, {"gradient": 4.8349510363189925, "elevation": -3135.161, "temperature": 90.35615406950103, "vertical_depth": 3160.161}, {"gradient": 5.022704551741797, "elevation": -3145.095, "temperature": 90.40604961651803, "vertical_depth": 3170.095}, {"gradient": 4.974476206863818, "elevation": -3155.029, "temperature": 90.45546606315702, "vertical_depth": 3180.029}, {"gradient": 4.786355304883408, "elevation": -3164.963, "temperature": 90.50301371675573, "vertical_depth": 3189.963}, {"gradient": 4.868445404285777, "elevation": -3174.897, "temperature": 90.5513768534019, "vertical_depth": 3199.897}, {"gradient": 4.679484681996373, "elevation": -3184.831, "temperature": 90.59786285423286, "vertical_depth": 3209.831}, {"gradient": 4.834447974534246, "elevation": -3194.765, "temperature": 90.64588826041188, "vertical_depth": 3219.765}, {"gradient": 4.645226850002428, "elevation": -3204.699, "temperature": 90.6920339439398, "vertical_depth": 3229.699}, {"gradient": 4.610962298136959, "elevation": -3214.633, "temperature": 90.7378392434095, "vertical_depth": 3239.633}, {"gradient": 4.80052661161106, "elevation": -3224.567, "temperature": 90.78552767476924, "vertical_depth": 3249.567}, {"gradient": 4.766255005582386, "elevation": -3234.501, "temperature": 90.8328756519947, "vertical_depth": 3259.501}, {"gradient": 4.576921806805771, "elevation": -3244.434, "temperature": 90.8783382163017, "vertical_depth": 3269.434}, {"gradient": 4.541871286361042, "elevation": -3254.368, "temperature": 90.92345716566041, "vertical_depth": 3279.368}, {"gradient": 4.731894802487829, "elevation": -3264.302, "temperature": 90.97046380862832, "vertical_depth": 3289.302}, {"gradient": 4.507192927612679, "elevation": -3274.236, "temperature": 91.01523826317123, "vertical_depth": 3299.236}, {"gradient": 4.697445977075723, "elevation": -3284.17, "temperature": 91.0619026915075, "vertical_depth": 3309.17}, {"gradient": 4.662908506114527, "elevation": -3294.104, "temperature": 91.10822402460724, "vertical_depth": 3319.104}, {"gradient": 4.472425992083099, "elevation": -3304.038, "temperature": 91.1526531044126, "vertical_depth": 3329.038}, {"gradient": 4.416103385678022, "elevation": -3313.972, "temperature": 91.19652267544592, "vertical_depth": 3338.972}, {"gradient": 4.607009258277793, "elevation": -3323.906, "temperature": 91.24228870541765, "vertical_depth": 3348.906}, {"gradient": 4.261879693025631, "elevation": -3333.84, "temperature": 91.28462621828817, "vertical_depth": 3358.84}, {"gradient": 4.454014195977763, "elevation": -3343.774, "temperature": 91.32887239531101, "vertical_depth": 3368.774}, {"gradient": 4.4193129889843705, "elevation": -3353.708, "temperature": 91.37277385054358, "vertical_depth": 3378.708}, {"gradient": 4.226982201312731, "elevation": -3363.642, "temperature": 91.41476469173142, "vertical_depth": 3388.642}, {"gradient": 4.1920526896283565, "elevation": -3373.576, "temperature": 91.45640854315019, "vertical_depth": 3398.576}, {"gradient": 4.384618327916562, "elevation": -3383.51, "temperature": 91.49996534161971, "vertical_depth": 3408.51}, {"gradient": 4.350210076111363, "elevation": -3393.444, "temperature": 91.5431803285158, "vertical_depth": 3418.444}, {"gradient": 4.157231623451319, "elevation": -3403.378, "temperature": 91.58447826746317, "vertical_depth": 3428.378}, {"gradient": 4.122010429708466, "elevation": -3413.312, "temperature": 91.62542631907189, "vertical_depth": 3438.312}, {"gradient": 4.315212583274342, "elevation": -3423.246, "temperature": 91.66829364087414, "vertical_depth": 3448.246}, {"gradient": 4.08664678606593, "elevation": -3433.18, "temperature": 91.70889039004692, "vertical_depth": 3458.18}, {"gradient": 4.2800728923107725, "elevation": -3443.114, "temperature": 91.75140863415913, "vertical_depth": 3468.114}, {"gradient": 4.244977667160438, "elevation": -3453.048, "temperature": 91.7935782423047, "vertical_depth": 3478.048}, {"gradient": 4.05132704758985, "elevation": -3462.982, "temperature": 91.83382412519546, "vertical_depth": 3487.982}, {"gradient": -899.213410221727, "elevation": -3463.082, "temperature": 91.74390278417337, "vertical_depth": 3488.082}, {"gradient": -1634.858255950812, "elevation": -3463.182, "temperature": 91.58041695857844, "vertical_depth": 3488.182}, {"gradient": 5.871948071008937, "elevation": -3473.132, "temperature": 91.63884284188498, "vertical_depth": 3498.132}, {"gradient": 5.617895872065499, "elevation": -3483.081, "temperature": 91.69473528791616, "vertical_depth": 3508.081}, {"gradient": 5.825492664409079, "elevation": -3493.031, "temperature": 91.75269893992703, "vertical_depth": 3518.031}, {"gradient": 5.570405539907702, "elevation": -3502.981, "temperature": 91.80812447504911, "vertical_depth": 3527.981}, {"gradient": 5.523294478508767, "elevation": -3512.931, "temperature": 91.86308125511027, "vertical_depth": 3537.931}, {"gradient": 5.77941387797759, "elevation": -3522.88, "temperature": 91.92058064378227, "vertical_depth": 3547.88}, {"gradient": 5.477062325663437, "elevation": -3532.828, "temperature": 91.97506645979797, "vertical_depth": 3557.828}, {"gradient": 5.733189671160566, "elevation": -3542.776, "temperature": 92.03210023064668, "vertical_depth": 3567.776}, {"gradient": 5.6889560155765455, "elevation": -3552.718, "temperature": 92.08865983135354, "vertical_depth": 3577.718}, {"gradient": 5.435431966948399, "elevation": -3562.654, "temperature": 92.14266628337714, "vertical_depth": 3587.654}, {"gradient": 5.391335674202181, "elevation": -3572.579, "temperature": 92.1961752899436, "vertical_depth": 3597.579}, {"gradient": 5.653669728907384, "elevation": -3582.495, "temperature": 92.25223707897544, "vertical_depth": 3607.495}, {"gradient": 5.609672816616943, "elevation": -3592.398, "temperature": 92.3077896688784, "vertical_depth": 3617.398}, {"gradient": 5.359770903158588, "elevation": -3602.287, "temperature": 92.36079244333973, "vertical_depth": 3627.287}, {"gradient": 5.315439477404261, "elevation": -3612.162, "temperature": 92.4132824081791, "vertical_depth": 3637.162}, {"gradient": 5.58229009360576, "elevation": -3622.021, "temperature": 92.46831820621196, "vertical_depth": 3647.021}, {"gradient": 5.236314619894957, "elevation": -3631.862, "temperature": 92.51984877838635, "vertical_depth": 3656.862}, {"gradient": 5.5049571761993885, "elevation": -3641.685, "temperature": 92.57392397272815, "vertical_depth": 3666.685}, {"gradient": 5.428991663683801, "elevation": -3651.488, "temperature": 92.62714437800724, "vertical_depth": 3676.488}, {"gradient": 5.18094106789143, "elevation": -3661.27, "temperature": 92.67782434353336, "vertical_depth": 3686.27}, {"gradient": 5.138373150579879, "elevation": -3671.03, "temperature": 92.72797486548302, "vertical_depth": 3696.03}, {"gradient": 5.4115451218270225, "elevation": -3680.765, "temperature": 92.780656257244, "vertical_depth": 3705.765}, {"gradient": 5.109713873104741, "elevation": -3690.475, "temperature": 92.83027157895185, "vertical_depth": 3715.475}, {"gradient": 5.3841802143243624, "elevation": -3700.158, "temperature": 92.88240659596715, "vertical_depth": 3725.158}, {"gradient": 5.341925469197119, "elevation": -3709.814, "temperature": 92.93398822829772, "vertical_depth": 3734.814}, {"gradient": 5.098139771309531, "elevation": -3719.44, "temperature": 92.98306292173635, "vertical_depth": 3744.44}, {"gradient": 5.05724258109572, "elevation": -3729.036, "temperature": 93.03159222154454, "vertical_depth": 3754.036}, {"gradient": 5.334820434236493, "elevation": -3738.6, "temperature": 93.08261444417758, "vertical_depth": 3763.6}, {"gradient": 5.293287814737272, "elevation": -3748.132, "temperature": 93.13307006362766, "vertical_depth": 3773.132}, {"gradient": 5.0514462136870675, "elevation": -3757.63, "temperature": 93.18104869976526, "vertical_depth": 3782.63}, {"gradient": 5.012523583174559, "elevation": -3767.091, "temperature": 93.22847218538567, "vertical_depth": 3792.091}, {"gradient": 5.292621901446384, "elevation": -3776.516, "temperature": 93.2783551468068, "vertical_depth": 3801.516}, {"gradient": 4.992951894128342, "elevation": -3785.902, "temperature": 93.32521899328509, "vertical_depth": 3810.902}, {"gradient": 5.274844219610352, "elevation": -3795.249, "temperature": 93.37452296220579, "vertical_depth": 3820.249}, {"gradient": 5.234840501403584, "elevation": -3804.556, "temperature": 93.42324362275235, "vertical_depth": 3829.556}, {"gradient": 4.997406445804815, "elevation": -3813.821, "temperature": 93.46954459347273, "vertical_depth": 3838.821}, {"gradient": 4.95980657422296, "elevation": -3823.042, "temperature": 93.51527896989364, "vertical_depth": 3848.042}, {"gradient": 5.244272998954188, "elevation": -3832.22, "temperature": 93.56341090747804, "vertical_depth": 3857.22}, {"gradient": 5.2063264300792955, "elevation": -3841.351, "temperature": 93.6109498741111, "vertical_depth": 3866.351}, {"gradient": 4.971365458438038, "elevation": -3850.436, "temperature": 93.65611472930101, "vertical_depth": 3875.436}, {"gradient": 4.934507321655909, "elevation": -3859.473, "temperature": 93.70070787196681, "vertical_depth": 3884.473}, {"gradient": 5.223421120482946, "elevation": -3868.46, "temperature": 93.7476507575766, "vertical_depth": 3893.46}, {"gradient": 5.0909042663613615, "elevation": -3877.397, "temperature": 93.79314816900506, "vertical_depth": 3902.397}, {"gradient": 4.858010174360735, "elevation": -3886.282, "temperature": 93.83631158940426, "vertical_depth": 3911.282}, {"gradient": 5.02880089972261, "elevation": -3895.136, "temperature": 93.8808365925704, "vertical_depth": 3920.136}, {"gradient": 4.766137106244359, "elevation": -3903.99, "temperature": 93.92303597050909, "vertical_depth": 3928.99}, {"gradient": 4.71716721265808, "elevation": -3912.844, "temperature": 93.96480176900997, "vertical_depth": 3937.844}, {"gradient": 4.980806939067437, "elevation": -3921.697, "temperature": 94.00889685284153, "vertical_depth": 3946.697}, {"gradient": 4.931648723194261, "elevation": -3930.551, "temperature": 94.05256167063669, "vertical_depth": 3955.551}, {"gradient": 4.668683142223349, "elevation": -3939.404, "temperature": 94.0938935224948, "vertical_depth": 3964.404}, {"gradient": 4.619012310176905, "elevation": -3948.258, "temperature": 94.1347902574891, "vertical_depth": 3973.258}, {"gradient": 4.8829197920063665, "elevation": -3957.112, "temperature": 94.17802362932753, "vertical_depth": 3982.112}, {"gradient": 4.834664656159873, "elevation": -3965.965, "temperature": 94.22082491552851, "vertical_depth": 3990.965}, {"gradient": 4.569769299974932, "elevation": -3974.819, "temperature": 94.26128565291049, "vertical_depth": 3999.819}, {"gradient": 4.785175850815547, "elevation": -3983.673, "temperature": 94.30365359989361, "vertical_depth": 4008.673}, {"gradient": 4.520897938219003, "elevation": -3992.526, "temperature": 94.34367710934066, "vertical_depth": 4017.526}, {"gradient": 4.7359269428807105, "elevation": -4001.38, "temperature": 94.38560900649293, "vertical_depth": 4026.38}, {"gradient": 4.4707780796219465, "elevation": -4010.234, "temperature": 94.4251932756099, "vertical_depth": 4035.234}, {"gradient": 4.687383793691065, "elevation": -4019.087, "temperature": 94.46669068433545, "vertical_depth": 4044.087}, {"gradient": 4.421210570590639, "elevation": -4027.941, "temperature": 94.50583608272746, "vertical_depth": 4052.941}, {"gradient": 4.372078223460101, "elevation": -4036.794, "temperature": 94.54454209123975, "vertical_depth": 4061.794}, {"gradient": 4.637811789132578, "elevation": -4045.648, "temperature": 94.58560527682073, "vertical_depth": 4070.648}, {"gradient": 4.321589734085452, "elevation": -4054.502, "temperature": 94.62386863232632, "vertical_depth": 4079.502}, {"gradient": 4.588735821806221, "elevation": -4063.355, "temperature": 94.66449271055677, "vertical_depth": 4088.355}, {"gradient": 4.538418862624003, "elevation": -4072.209, "temperature": 94.70467587116644, "vertical_depth": 4097.209}, {"gradient": 4.271389718740656, "elevation": -4081.063, "temperature": 94.74249475573617, "vertical_depth": 4106.063}, {"gradient": 4.179717584089665, "elevation": -4089.916, "temperature": 94.77949779550812, "vertical_depth": 4114.916}, {"gradient": 4.44717591427908, "elevation": -4098.77, "temperature": 94.81887309105315, "vertical_depth": 4123.77}, {"gradient": 4.09937601868368, "elevation": -4107.623, "temperature": 94.85516486694655, "vertical_depth": 4132.623}, {"gradient": 4.367576700783512, "elevation": -4116.477, "temperature": 94.89383539105529, "vertical_depth": 4141.477}, {"gradient": 4.3175449423439725, "elevation": -4125.331, "temperature": 94.9320629339748, "vertical_depth": 4150.331}, {"gradient": 4.048946560686014, "elevation": -4134.184, "temperature": 94.96790825787656, "vertical_depth": 4159.184}, {"gradient": 3.9979236284238064, "elevation": -4143.038, "temperature": 95.00330587368262, "vertical_depth": 4168.038}, {"gradient": 4.26735984760718, "elevation": -4151.892, "temperature": 95.04108907777334, "vertical_depth": 4176.892}, {"gradient": 3.9476558357051754, "elevation": -4160.745, "temperature": 95.07603767488683, "vertical_depth": 4185.745}, {"gradient": 4.217005640816659, "elevation": -4169.599, "temperature": 95.11337504283063, "vertical_depth": 4194.599}, {"gradient": 4.166633721760631, "elevation": -4178.453, "temperature": 95.1502664178031, "vertical_depth": 4203.453}, {"gradient": 3.8968704600668, "elevation": -4187.306, "temperature": 95.18476541198606, "vertical_depth": 4212.306}, {"gradient": 4.116108915851712, "elevation": -4196.16, "temperature": 95.22120944032702, "vertical_depth": 4221.16}, {"gradient": 3.8459420009256253, "elevation": -4205.013, "temperature": 95.25525756486121, "vertical_depth": 4230.013}, {"gradient": 4.0654629423853175, "elevation": -4213.867, "temperature": 95.29125317375309, "vertical_depth": 4238.867}, {"gradient": 3.794459954442266, "elevation": -4222.721, "temperature": 95.32484932218972, "vertical_depth": 4247.721}, {"gradient": 3.743831072866823, "elevation": -4231.574, "temperature": 95.35799345867781, "vertical_depth": 4256.574}, {"gradient": 4.014920632959905, "elevation": -4240.428, "temperature": 95.39354156596204, "vertical_depth": 4265.428}, {"gradient": 3.9639628477377653, "elevation": -4249.282, "temperature": 95.42863849301591, "vertical_depth": 4274.282}, {"gradient": 3.6924795711660434, "elevation": -4258.135, "temperature": 95.46132801465944, "vertical_depth": 4283.135}, {"gradient": 3.6405669199375645, "elevation": -4266.989, "temperature": 95.49356159416857, "vertical_depth": 4291.989}, {"gradient": 3.9132764234435307, "elevation": -4275.842, "temperature": 95.52820583034531, "vertical_depth": 4300.842}, {"gradient": 3.5889428307584343, "elevation": -4284.696, "temperature": 95.55998233016885, "vertical_depth": 4309.696}, {"gradient": 3.8615724541426304, "elevation": -4293.55, "temperature": 95.59417269267783, "vertical_depth": 4318.55}, {"gradient": 3.810611851400399, "elevation": -4302.403, "temperature": 95.62790803939828, "vertical_depth": 4327.403}, {"gradient": 3.5371931536731274, "elevation": -4311.257, "temperature": 95.6592263475809, "vertical_depth": 4336.257}, {"gradient": 3.7586858979637463, "elevation": -4320.111, "temperature": 95.69250575252147, "vertical_depth": 4345.111}, {"gradient": 3.4857253176104366, "elevation": -4328.964, "temperature": 95.72336487875828, "vertical_depth": 4353.964}, {"gradient": 3.433347868732214, "elevation": -4337.818, "temperature": 95.75376374078803, "vertical_depth": 4362.818}, {"gradient": 3.707069578627164, "elevation": -4346.672, "temperature": 95.7865861348372, "vertical_depth": 4371.672}, {"gradient": 3.65569966571774, "elevation": -4355.525, "temperature": 95.8189500439778, "vertical_depth": 4380.525}, {"gradient": 3.3812183023595357, "elevation": -4364.379, "temperature": 95.84888735082689, "vertical_depth": 4389.379}, {"gradient": 3.3293602888285414, "elevation": -4373.232, "temperature": 95.87836217746388, "vertical_depth": 4398.232}, {"gradient": 3.603410935424716, "elevation": -4382.086, "temperature": 95.91026677788614, "vertical_depth": 4407.086}, {"gradient": 3.5513936314212686, "elevation": -4390.94, "temperature": 95.94171081709874, "vertical_depth": 4415.94}, {"gradient": 3.276987690187262, "elevation": -4399.793, "temperature": 95.97072198911997, "vertical_depth": 4424.793}, {"gradient": 3.2241135117303363, "elevation": -4408.647, "temperature": 95.99926829015283, "vertical_depth": 4433.647}, {"gradient": 3.499222316240667, "elevation": -4417.501, "temperature": 96.03025040454082, "vertical_depth": 4442.501}, {"gradient": 3.4473142686968465, "elevation": -4426.354, "temperature": 96.0607694777616, "vertical_depth": 4451.354}, {"gradient": 3.1714882396466333, "elevation": -4435.208, "temperature": 96.08884983463543, "vertical_depth": 4460.208}, {"gradient": 3.1191114184960984, "elevation": -4444.061, "temperature": 96.11646332802337, "vertical_depth": 4469.061}, {"gradient": 3.394532291582341, "elevation": -4452.915, "temperature": 96.14651851693304, "vertical_depth": 4477.915}, {"gradient": 3.0659023131565313, "elevation": -4461.769, "temperature": 96.17366401601373, "vertical_depth": 4486.769}, {"gradient": 3.342380920359202, "elevation": -4470.622, "temperature": 96.20325411430167, "vertical_depth": 4495.622}, {"gradient": 3.2665181165479806, "elevation": -4479.476, "temperature": 96.23217586570559, "vertical_depth": 4504.476}, {"gradient": 2.9898492112983095, "elevation": -4488.33, "temperature": 96.25864799062242, "vertical_depth": 4513.33}, {"gradient": 2.8452942843655014, "elevation": -4497.183, "temperature": 96.28383738092191, "vertical_depth": 4522.183}, {"gradient": 3.1229671896629227, "elevation": -4506.037, "temperature": 96.31148813241919, "vertical_depth": 4531.037}, {"gradient": 2.7922207375536408, "elevation": -4514.891, "temperature": 96.33621045482948, "vertical_depth": 4539.891}, {"gradient": 3.0708526517116095, "elevation": -4523.744, "temperature": 96.36339671335509, "vertical_depth": 4548.744}, {"gradient": 3.017044208098685, "elevation": -4532.598, "temperature": 96.3901096227736, "vertical_depth": 4557.598}, {"gradient": 2.738773507610844, "elevation": -4541.451, "temperature": 96.41435598463647, "vertical_depth": 4566.451}, {"gradient": 2.620755521046681, "elevation": -4550.305, "temperature": 96.43756015401982, "vertical_depth": 4575.305}, {"gradient": 2.9003324865429554, "elevation": -4559.159, "temperature": 96.46323969785567, "vertical_depth": 4584.159}, {"gradient": 2.847887606994622, "elevation": -4568.012, "temperature": 96.4884520468404, "vertical_depth": 4593.012}, {"gradient": 2.567723148569249, "elevation": -4576.866, "temperature": 96.51118666759783, "vertical_depth": 4601.866}, {"gradient": 2.7947330088168, "elevation": -4585.72, "temperature": 96.53593123365789, "vertical_depth": 4610.72}, {"gradient": 2.5148920571226037, "elevation": -4594.573, "temperature": 96.5581955730396, "vertical_depth": 4619.573}, {"gradient": 2.741685348650758, "elevation": -4603.427, "temperature": 96.58247045511655, "vertical_depth": 4628.427}, {"gradient": 2.461607651107014, "elevation": -4612.28, "temperature": 96.6042630676518, "vertical_depth": 4637.28}, {"gradient": 2.408120529411893, "elevation": -4621.134, "temperature": 96.62558456681921, "vertical_depth": 4646.134}, {"gradient": 2.688842275325308, "elevation": -4629.988, "temperature": 96.64939157632494, "vertical_depth": 4654.988}, {"gradient": 2.6359933586879185, "elevation": -4638.841, "temperature": 96.67272802552941, "vertical_depth": 4663.841}, {"gradient": 2.354688335779577, "elevation": -4647.695, "temperature": 96.6935764360544, "vertical_depth": 4672.695}, {"gradient": 2.3010789845022512, "elevation": -4656.549, "temperature": 96.71395018938318, "vertical_depth": 4681.549}, {"gradient": 2.582597953296166, "elevation": -4665.402, "temperature": 96.73681392906371, "vertical_depth": 4690.402}, {"gradient": 2.247359522938894, "elevation": -4674.256, "temperature": 96.75671205027982, "vertical_depth": 4699.256}, {"gradient": 2.5287904985978025, "elevation": -4683.11, "temperature": 96.7791019613544, "vertical_depth": 4708.11}, {"gradient": 2.475508934983581, "elevation": -4691.963, "temperature": 96.80101764195581, "vertical_depth": 4716.963}, {"gradient": 2.193575355055773, "elevation": -4700.817, "temperature": 96.82043955814947, "vertical_depth": 4725.817}, {"gradient": 2.139896324457555, "elevation": -4709.67, "temperature": 96.8393840603099, "vertical_depth": 4734.67}, {"gradient": 2.4214940379122405, "elevation": -4718.524, "temperature": 96.86082396852157, "vertical_depth": 4743.524}, {"gradient": 2.0856279107426645, "elevation": -4727.378, "temperature": 96.87929011804329, "vertical_depth": 4752.378}, {"gradient": 2.367901001569262, "elevation": -4736.231, "temperature": 96.90025314561018, "vertical_depth": 4761.231}, {"gradient": 2.031505372791275, "elevation": -4745.085, "temperature": 96.91824009418087, "vertical_depth": 4770.085}, {"gradient": 2.3136638604613533, "elevation": -4753.939, "temperature": 96.9387252740014, "vertical_depth": 4778.939}, {"gradient": 653.1603163124281, "elevation": -4754.027, "temperature": 96.99620338183672, "vertical_depth": 4779.027}, {"gradient": 1149.9541391506875, "elevation": -4754.116, "temperature": 97.09854930022107, "vertical_depth": 4779.116}, {"gradient": 0.9151423731542393, "elevation": -4762.678, "temperature": 97.10638474922001, "vertical_depth": 4787.678}, {"gradient": 0.7756630096207848, "elevation": -4771.24, "temperature": 97.11302597590839, "vertical_depth": 4796.24}, {"gradient": 0.7507000639347341, "elevation": -4779.801, "temperature": 97.11945271915573, "vertical_depth": 4804.801}, {"gradient": 0.8901550782545878, "elevation": -4788.363, "temperature": 97.12707422693575, "vertical_depth": 4813.363}, {"gradient": 0.8651303535835411, "elevation": -4796.925, "temperature": 97.13448147302313, "vertical_depth": 4821.925}, {"gradient": 0.7256101374546574, "elevation": -4805.486, "temperature": 97.14069342140988, "vertical_depth": 4830.486}, {"gradient": 0.7003943496409015, "elevation": -4814.048, "temperature": 97.1466901978315, "vertical_depth": 4839.048}, {"gradient": 0.8400531570858235, "elevation": -4822.61, "temperature": 97.15388273296247, "vertical_depth": 4847.61}, {"gradient": 0.675306291647912, "elevation": -4831.171, "temperature": 97.15966403012527, "vertical_depth": 4856.171}, {"gradient": 0.8149373820910167, "elevation": -4839.733, "temperature": 97.16664152399073, "vertical_depth": 4864.733}, {"gradient": 0.7897831237165771, "elevation": -4848.295, "temperature": 97.173403647096, "vertical_depth": 4873.295}, {"gradient": 0.6501008195018383, "elevation": -4856.856, "temperature": 97.17896916021175, "vertical_depth": 4881.856}, {"gradient": 0.6669826538178126, "elevation": -4865.418, "temperature": 97.18467986569374, "vertical_depth": 4890.418}, {"gradient": 0.8446343352854946, "elevation": -4873.979, "temperature": 97.19191078023812, "vertical_depth": 4898.979}, {"gradient": 0.728923393022942, "elevation": -4882.541, "temperature": 97.19815182232918, "vertical_depth": 4907.541}, {"gradient": 0.5904411174432819, "elevation": -4891.103, "temperature": 97.20320717917673, "vertical_depth": 4916.103}, {"gradient": 0.7040001622884392, "elevation": -4899.664, "temperature": 97.20923412456608, "vertical_depth": 4924.664}, {"gradient": 0.5653974941014472, "elevation": -4908.226, "temperature": 97.21407505791058, "vertical_depth": 4933.226}, {"gradient": 0.6788749865072929, "elevation": -4916.788, "temperature": 97.21988758554505, "vertical_depth": 4941.788}, {"gradient": 0.5403831822555751, "elevation": -4925.349, "temperature": 97.22451380596834, "vertical_depth": 4950.349}, {"gradient": 0.5152091981095853, "elevation": -4933.911, "temperature": 97.22892502712256, "vertical_depth": 4958.911}, {"gradient": 0.6537945870601848, "elevation": -4942.473, "temperature": 97.23452281637697, "vertical_depth": 4967.473}, {"gradient": 0.4901225029269177, "elevation": -4951.034, "temperature": 97.23871875512452, "vertical_depth": 4976.034}, {"gradient": 0.62867677175046, "elevation": -4959.596, "temperature": 97.24410148564425, "vertical_depth": 4984.596}, {"gradient": 0.603521543326615, "elevation": -4968.158, "temperature": 97.24926883709821, "vertical_depth": 4993.158}, {"gradient": 0.4649429444079716, "elevation": -4976.719, "temperature": 97.25324921364529, "vertical_depth": 5001.719}, {"gradient": 0.4354497967163569, "elevation": -4985.281, "temperature": 97.25697753480478, "vertical_depth": 5010.281}, {"gradient": 0.5741203530752893, "elevation": -4993.843, "temperature": 97.2618931532678, "vertical_depth": 5018.843}, {"gradient": 0.49220073259511915, "elevation": -5002.404, "temperature": 97.26610688373955, "vertical_depth": 5027.404}, {"gradient": 0.3531882663324819, "elevation": -5010.966, "temperature": 97.26913088167589, "vertical_depth": 5035.966}, {"gradient": 0.4669339859488653, "elevation": -5019.528, "temperature": 97.27312877046359, "vertical_depth": 5044.528}, {"gradient": 0.328018517315005, "elevation": -5028.089, "temperature": 97.27593693699032, "vertical_depth": 5053.089}, {"gradient": 0.302748692354426, "elevation": -5036.651, "temperature": 97.27852907129426, "vertical_depth": 5061.651}, {"gradient": 0.44170059477019463, "elevation": -5045.213, "temperature": 97.28231091178668, "vertical_depth": 5070.213}, {"gradient": 0.41647795010194494, "elevation": -5053.774, "temperature": 97.2858763795175, "vertical_depth": 5078.774}, {"gradient": 0.27748646732830157, "elevation": -5062.336, "temperature": 97.28825221865077, "vertical_depth": 5087.336}, {"gradient": 0.25219258760172214, "elevation": -5070.898, "temperature": 97.29041149158581, "vertical_depth": 5095.898}, {"gradient": 0.39116289130078735, "elevation": -5079.459, "temperature": 97.29376023709824, "vertical_depth": 5104.459}, {"gradient": 0.22686831764532037, "elevation": -5088.021, "temperature": 97.29570268363392, "vertical_depth": 5113.021}, {"gradient": 0.3657651119266767, "elevation": -5096.583, "temperature": 97.29883436452224, "vertical_depth": 5121.583}, {"gradient": 0.34041197001943396, "elevation": -5105.144, "temperature": 97.30174863139757, "vertical_depth": 5130.144}, {"gradient": 0.20151406824939538, "elevation": -5113.706, "temperature": 97.30347399484992, "vertical_depth": 5138.706}, {"gradient": 0.17613020387042028, "elevation": -5122.268, "temperature": 97.30498202165546, "vertical_depth": 5147.268}, {"gradient": 0.3149741918543888, "elevation": -5130.829, "temperature": 97.30767851571193, "vertical_depth": 5155.829}, {"gradient": 0.28945920832672195, "elevation": -5139.391, "temperature": 97.31015686545362, "vertical_depth": 5164.391}, {"gradient": 0.15073461451309683, "elevation": -5147.952, "temperature": 97.31144730448847, "vertical_depth": 5172.952}, {"gradient": 0.12527464205849928, "elevation": -5156.514, "temperature": 97.31251990597377, "vertical_depth": 5181.514}, {"gradient": 0.263935622638294, "elevation": -5165.076, "temperature": 97.3147797227748, "vertical_depth": 5190.076}, {"gradient": 0.23839177755241464, "elevation": -5173.637, "temperature": 97.31682059478243, "vertical_depth": 5198.637}, {"gradient": 0.09980305999206705, "elevation": -5182.199, "temperature": 97.31767510858208, "vertical_depth": 5207.199}, {"gradient": 0.07430191013947757, "elevation": -5190.761, "temperature": 97.3183112815367, "vertical_depth": 5215.761}, {"gradient": 0.21276528269605677, "elevation": -5199.322, "temperature": 97.32013276512185, "vertical_depth": 5224.322}, {"gradient": 30.33143470893307, "elevation": -5199.411, "temperature": 97.32283226281095, "vertical_depth": 5224.411}, {"gradient": -0.6329573807310728, "elevation": -5199.5, "temperature": 97.32277592960406, "vertical_depth": 5224.5}, {"gradient": -2.3031160386056304, "elevation": -5207.184, "temperature": 97.30507878596342, "vertical_depth": 5232.184}, {"gradient": -2.484937833632845, "elevation": -5214.869, "temperature": 97.28598203871195, "vertical_depth": 5239.869}, {"gradient": -2.5091108409877307, "elevation": -5222.553, "temperature": 97.2667020310098, "vertical_depth": 5247.553}, {"gradient": -2.3272472563741577, "elevation": -5230.237, "temperature": 97.24881946309182, "vertical_depth": 5255.237}, {"gradient": -1.0114965438125472, "elevation": -5230.326, "temperature": 97.24872943989942, "vertical_depth": 5255.326}, {"gradient": -1.88760007626586, "elevation": -5230.415, "temperature": 97.24856144349263, "vertical_depth": 5255.415}, {"gradient": -2.3545969901568022, "elevation": -5238.284, "temperature": 97.23003311977709, "vertical_depth": 5263.284}, {"gradient": -2.535041822138387, "elevation": -5246.154, "temperature": 97.21008234063686, "vertical_depth": 5271.154}, {"gradient": -2.5597475728764967, "elevation": -5254.023, "temperature": 97.1899396869859, "vertical_depth": 5279.023}, {"gradient": -2.37939567811194, "elevation": -5261.892, "temperature": 97.17121622239483, "vertical_depth": 5286.892}, {"gradient": -2.4040250725298384, "elevation": -5269.762, "temperature": 97.15229654507402, "vertical_depth": 5294.762}, {"gradient": -2.5841756285859767, "elevation": -5277.631, "temperature": 97.13196166705268, "vertical_depth": 5302.631}, {"gradient": -2.608329864712897, "elevation": -5285.501, "temperature": 97.11143411101739, "vertical_depth": 5310.501}, {"gradient": -2.4294465374973555, "elevation": -5293.37, "temperature": 97.09231679621382, "vertical_depth": 5318.37}, {"gradient": -2.4548188724693927, "elevation": -5301.239, "temperature": 97.07299982650636, "vertical_depth": 5326.239}, {"gradient": -2.6328947552949704, "elevation": -5309.109, "temperature": 97.05227894478219, "vertical_depth": 5334.109}, {"gradient": -2.4805851336488516, "elevation": -5316.978, "temperature": 97.0327592203655, "vertical_depth": 5341.978}, {"gradient": -2.65792891087811, "elevation": -5324.847, "temperature": 97.0118439777658, "vertical_depth": 5349.847}, {"gradient": -2.682529123846106, "elevation": -5332.717, "temperature": 96.99073247356114, "vertical_depth": 5357.717}, {"gradient": -2.5070299713504247, "elevation": -5340.586, "temperature": 96.97100465471658, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "Anular A (Prod GL PA)", "calculated_from": "Daq40oro2q-5-a", "source": "GRADIENT", "_id": "Y8Nn1dPRjV", "data": [{"gradient": 0, "_id": "rzjnJNDq7J", "elevation": -2047, "temperature": 60.00247825806139, "vertical_depth": 2072}, {"gradient": 368.74787895933866, "_id": "8PVDdRAM6G", "elevation": -2053.685, "temperature": 62.467557828904546, "vertical_depth": 2078.685}, {"gradient": 368.80304770241963, "_id": "NdbkALxQyx", "elevation": -2060.369, "temperature": 64.93263739974759, "vertical_depth": 2085.369}, {"gradient": 290.43349097726986, "_id": "mgBQXnKpZX", "elevation": -2067.05, "temperature": 66.87302355296674, "vertical_depth": 2092.05}, {"gradient": 290.5204601316367, "_id": "wkyvjEp8Va", "elevation": -2073.729, "temperature": 68.81340970618584, "vertical_depth": 2098.729}, {"gradient": 228.40313922952086, "_id": "qGkdp0QOZz", "elevation": -2080.405, "temperature": 70.3382290636822, "vertical_depth": 2105.405}, {"gradient": 228.43735692830435, "_id": "eqEbjl9v7B", "elevation": -2087.08, "temperature": 71.86304842117858, "vertical_depth": 2112.08}, {"gradient": 242.64926590171186, "_id": "QmY36lRvJV", "elevation": -2087.18, "temperature": 71.88731334776872, "vertical_depth": 2112.18}, {"gradient": 299.79938180479235, "_id": "EAqpNlyLZW", "elevation": -2087.28, "temperature": 71.91729328594931, "vertical_depth": 2112.28}, {"gradient": 230.22373390236194, "_id": "ErE8XwJ9ew", "elevation": -2096.532, "temperature": 74.04732327201395, "vertical_depth": 2121.532}, {"gradient": 230.19885291957465, "_id": "N405bz8kGn", "elevation": -2105.785, "temperature": 76.17735325807871, "vertical_depth": 2130.785}, {"gradient": 147.39825436260017, "_id": "5XPbL9pyQL", "elevation": -2115.037, "temperature": 77.54108190744148, "vertical_depth": 2140.037}, {"gradient": 147.39825436259906, "_id": "Mm1wLeW9k0", "elevation": -2124.289, "temperature": 78.9048105568043, "vertical_depth": 2149.289}, {"gradient": 94.64556826097233, "_id": "o9dgpyJz59", "elevation": -2133.542, "temperature": 79.78056599992306, "vertical_depth": 2158.542}, {"gradient": 94.65579800244697, "_id": "BDMVmpNGwV", "elevation": -2142.794, "temperature": 80.65632144304169, "vertical_depth": 2167.794}, {"gradient": 5.442282453605405, "_id": "kVA3y61vqE", "elevation": -2142.894, "temperature": 80.65686567128705, "vertical_depth": 2167.894}, {"gradient": 5.44228245414909, "_id": "ZYBk3n1OQb", "elevation": -2142.994, "temperature": 80.65740989953247, "vertical_depth": 2167.994}, {"gradient": -4.44253112350424, "_id": "mB1NKqoxkk", "elevation": -2152.935, "temperature": 80.61324669763371, "vertical_depth": 2177.935}, {"gradient": -4.442531123504037, "_id": "knXQl6RovL", "elevation": -2162.876, "temperature": 80.56908349573496, "vertical_depth": 2187.876}, {"gradient": 1.100149564564377, "_id": "DgRobjKdP7", "elevation": -2172.816, "temperature": 80.58001898240673, "vertical_depth": 2197.816}, {"gradient": 1.1000388966672552, "_id": "MXL7pRV4wp", "elevation": -2182.757, "temperature": 80.5909544690785, "vertical_depth": 2207.757}, {"gradient": 4.209313554560538, "_id": "mklZMBgYgg", "elevation": -2192.698, "temperature": 80.63279925512438, "vertical_depth": 2217.698}, {"gradient": 4.209313554560346, "_id": "5ANoLBpyV4", "elevation": -2202.639, "temperature": 80.67464404117027, "vertical_depth": 2227.639}, {"gradient": 5.950912172719036, "_id": "DgwyZAoJNg", "elevation": -2212.58, "temperature": 80.73380205907927, "vertical_depth": 2237.58}, {"gradient": 5.950912172707327, "_id": "nY9vOdE8OJ", "elevation": -2222.521, "temperature": 80.79296007698815, "vertical_depth": 2247.521}, {"gradient": 6.921524136383804, "_id": "52WrG3EDBL", "elevation": -2232.462, "temperature": 80.86176694842794, "vertical_depth": 2257.462}, {"gradient": 6.921524136383804, "_id": "rE1ZyxAnkx", "elevation": -2242.403, "temperature": 80.93057381986773, "vertical_depth": 2267.403}, {"gradient": 7.423328491647139, "_id": "qAga0LGd0Z", "elevation": -2252.344, "temperature": 81.0043691284032, "vertical_depth": 2277.344}, {"gradient": 7.423328491647478, "_id": "YMKne0dr69", "elevation": -2262.285, "temperature": 81.07816443693866, "vertical_depth": 2287.285}, {"gradient": 7.659186521115302, "_id": "j9QX6n0jNz", "elevation": -2272.226, "temperature": 81.15430441014507, "vertical_depth": 2297.226}, {"gradient": 7.659186521104217, "_id": "awk7pBngRQ", "elevation": -2282.167, "temperature": 81.23044438335137, "vertical_depth": 2307.167}, {"gradient": 7.780808275478429, "_id": "47Q2j5bayb", "elevation": -2292.107, "temperature": 81.30778561760962, "vertical_depth": 2317.107}, {"gradient": 7.780025576734169, "_id": "qXqYDyrgAo", "elevation": -2302.048, "temperature": 81.38512685186794, "vertical_depth": 2327.048}, {"gradient": 7.836914721690723, "_id": "0Gmj1qx3zo", "elevation": -2311.989, "temperature": 81.46303362111627, "vertical_depth": 2336.989}, {"gradient": 7.836914721685365, "_id": "2WKOEYZd03", "elevation": -2321.93, "temperature": 81.54094039036454, "vertical_depth": 2346.93}, {"gradient": 7.857546562535336, "_id": "67nkJ6KM3v", "elevation": -2331.871, "temperature": 81.6190522607427, "vertical_depth": 2356.871}, {"gradient": 7.8575465625356955, "_id": "8wEdR7GBpZ", "elevation": -2341.812, "temperature": 81.69716413112087, "vertical_depth": 2366.812}, {"gradient": 7.857494832942792, "_id": "oA1xlaYnwV", "elevation": -2351.753, "temperature": 81.77527548725516, "vertical_depth": 2376.753}, {"gradient": 7.857494832943152, "_id": "MgXJjwNV49", "elevation": -2361.694, "temperature": 81.85338684338944, "vertical_depth": 2386.694}, {"gradient": 7.845851398103769, "_id": "3lreXQZvpy", "elevation": -2371.635, "temperature": 81.931382452138, "vertical_depth": 2396.635}, {"gradient": 7.845851398115566, "_id": "gW3OyvQ3M3", "elevation": -2381.576, "temperature": 82.00937806088666, "vertical_depth": 2406.576}, {"gradient": 7.827781594273784, "_id": "ZrBMZ0e9aJ", "elevation": -2391.517, "temperature": 82.08719403771534, "vertical_depth": 2416.517}, {"gradient": 7.828569097452084, "_id": "32578MO5jk", "elevation": -2401.457, "temperature": 82.16501001454401, "vertical_depth": 2426.457}, {"gradient": 7.805945507851331, "_id": "V4nvDxZn98", "elevation": -2411.398, "temperature": 82.24260891883756, "vertical_depth": 2436.398}, {"gradient": 7.805945507851687, "_id": "9w4eXgn4LL", "elevation": -2421.339, "temperature": 82.32020782313111, "vertical_depth": 2446.339}, {"gradient": 7.781917791708313, "_id": "YPXG7jkXZw", "elevation": -2431.28, "temperature": 82.39756786789849, "vertical_depth": 2456.28}, {"gradient": 7.781917791708668, "_id": "KmXMlyvXp4", "elevation": -2441.221, "temperature": 82.47492791266586, "vertical_depth": 2466.221}, {"gradient": 7.756617675758208, "_id": "GMKVjaZKNk", "elevation": -2451.162, "temperature": 82.55203644898057, "vertical_depth": 2476.162}, {"gradient": 7.756617675757853, "_id": "YNGADl4GA6", "elevation": -2461.103, "temperature": 82.62914498529528, "vertical_depth": 2486.103}, {"gradient": 7.7305690681288, "_id": "7naz84PBE8", "elevation": -2471.044, "temperature": 82.70599457240155, "vertical_depth": 2496.044}, {"gradient": 7.730569068128446, "_id": "dBql1G3qY3", "elevation": -2480.985, "temperature": 82.78284415950782, "vertical_depth": 2505.985}, {"gradient": 7.716130982644374, "_id": "NQdAZBNdA5", "elevation": -2490.926, "temperature": 82.85955021760628, "vertical_depth": 2515.926}, {"gradient": 7.716130982638302, "_id": "W4rV6NXrRd", "elevation": -2500.867, "temperature": 82.9362562757047, "vertical_depth": 2525.867}, {"gradient": 7.68764168458203, "_id": "LjKlrd5Koa", "elevation": -2510.808, "temperature": 83.01267912169112, "vertical_depth": 2535.808}, {"gradient": 7.68841508917787, "_id": "G5NvJZ4NWB", "elevation": -2520.748, "temperature": 83.08910196767755, "vertical_depth": 2545.748}, {"gradient": 7.655987368498847, "_id": "bArKLb87RY", "elevation": -2530.689, "temperature": 83.1652101381078, "vertical_depth": 2555.689}, {"gradient": 7.655987368498497, "_id": "KJNYALdNWJ", "elevation": -2540.63, "temperature": 83.24131830853804, "vertical_depth": 2565.63}, {"gradient": 7.626248077823315, "_id": "db2zYKwjaG", "elevation": -2550.571, "temperature": 83.31713084067968, "vertical_depth": 2575.571}, {"gradient": 7.626248077822966, "_id": "EPEXyn2EEP", "elevation": -2560.512, "temperature": 83.39294337282132, "vertical_depth": 2585.512}, {"gradient": 7.59742656054086, "_id": "BdLklVEL9V", "elevation": -2570.453, "temperature": 83.46846939025966, "vertical_depth": 2595.453}, {"gradient": 7.597426560535142, "_id": "KYOM261OX2", "elevation": -2580.394, "temperature": 83.54399540769793, "vertical_depth": 2605.394}, {"gradient": 7.569183426680339, "_id": "D8mnObJmm2", "elevation": -2590.335, "temperature": 83.61924066014257, "vertical_depth": 2615.335}, {"gradient": 7.569183426680685, "_id": "O8d312ZdRb", "elevation": -2600.276, "temperature": 83.6944859125872, "vertical_depth": 2625.276}, {"gradient": 7.541345219953579, "_id": "Y75L6p45Xz", "elevation": -2610.217, "temperature": 83.76945442541876, "vertical_depth": 2635.217}, {"gradient": 7.541345219948206, "_id": "2AjB8b1jkb", "elevation": -2620.158, "temperature": 83.84442293825026, "vertical_depth": 2645.158}, {"gradient": 7.513665739665288, "_id": "8PR3D5JRRz", "elevation": -2630.099, "temperature": 83.91911628936828, "vertical_depth": 2655.099}, {"gradient": 7.514421641645604, "_id": "2lkRo25kkd", "elevation": -2640.039, "temperature": 83.99380964048623, "vertical_depth": 2665.039}, {"gradient": 7.486510662685718, "_id": "4OvaRQNvrj", "elevation": -2649.98, "temperature": 84.06823304298399, "vertical_depth": 2674.98}, {"gradient": 7.486510662685718, "_id": "PPLGlnYLMO", "elevation": -2659.921, "temperature": 84.14265644548175, "vertical_depth": 2684.921}, {"gradient": 7.459324660375367, "_id": "l2J7WMGJ2M", "elevation": -2669.862, "temperature": 84.21680959193054, "vertical_depth": 2694.862}, {"gradient": 7.45932466036999, "_id": "yVaB6bEaVm", "elevation": -2679.803, "temperature": 84.29096273837928, "vertical_depth": 2704.803}, {"gradient": 7.429808319675299, "_id": "y2Xn3mwX2q", "elevation": -2689.744, "temperature": 84.36482246288517, "vertical_depth": 2714.744}, {"gradient": 7.42980831966992, "_id": "pL5wKmG547", "elevation": -2699.685, "temperature": 84.43868218739101, "vertical_depth": 2724.685}, {"gradient": 7.369248296380273, "_id": "2koLz9pokA", "elevation": -2709.626, "temperature": 84.51193988470533, "vertical_depth": 2734.626}, {"gradient": 7.36924829638061, "_id": "LevMGBNv64", "elevation": -2719.567, "temperature": 84.58519758201965, "vertical_depth": 2744.567}, {"gradient": 7.306540074452753, "_id": "kQd2G7yde1", "elevation": -2729.508, "temperature": 84.65783189689978, "vertical_depth": 2754.508}, {"gradient": 7.306540074440983, "_id": "v3NxzDvNZk", "elevation": -2739.449, "temperature": 84.7304662117798, "vertical_depth": 2764.449}, {"gradient": 7.25909190468181, "_id": "JZMJ54oM4V", "elevation": -2749.39, "temperature": 84.80262884440424, "vertical_depth": 2774.39}, {"gradient": 7.259822195611993, "_id": "rOg6kJmgXR", "elevation": -2759.33, "temperature": 84.87479147702862, "vertical_depth": 2784.33}, {"gradient": 7.200928327792062, "_id": "P9v23pbv0m", "elevation": -2769.271, "temperature": 84.9463759055352, "vertical_depth": 2794.271}, {"gradient": 7.200928327792392, "_id": "KYoXRMKovd", "elevation": -2779.212, "temperature": 85.01796033404179, "vertical_depth": 2804.212}, {"gradient": 7.1143743696412995, "_id": "GYBPVeRBg2", "elevation": -2789.153, "temperature": 85.08868432965039, "vertical_depth": 2814.153}, {"gradient": 7.1143743696409745, "_id": "VvPWGwLjpn", "elevation": -2799.094, "temperature": 85.159408325259, "vertical_depth": 2824.094}, {"gradient": 7.051368897722914, "_id": "dJBOazLBwV", "elevation": -2809.035, "temperature": 85.22950598347126, "vertical_depth": 2834.035}, {"gradient": 7.0513688977283095, "_id": "ejnb5aMnZJ", "elevation": -2818.976, "temperature": 85.29960364168358, "vertical_depth": 2843.976}, {"gradient": -27.705294796217192, "_id": "NMb8WP5bwV", "elevation": -2819.076, "temperature": 85.29683311220396, "vertical_depth": 2844.076}, {"gradient": -4.697380982752018, "_id": "Rr10Egq1Op", "elevation": -2819.176, "temperature": 85.29636337410568, "vertical_depth": 2844.176}, {"gradient": -15.957021109403419, "_id": "8m0dNvX0Ae", "elevation": -2828.53, "temperature": 85.14710139864832, "vertical_depth": 2853.53}, {"gradient": -15.958727195271045, "_id": "vled4gLeNv", "elevation": -2837.883, "temperature": 84.99783942319095, "vertical_depth": 2862.883}, {"gradient": -8.567392888834823, "_id": "91JrDRaJxb", "elevation": -2847.237, "temperature": 84.91770003010879, "vertical_depth": 2872.237}, {"gradient": -8.567392888841315, "_id": "KdL5r67LAg", "elevation": -2856.591, "temperature": 84.83756063702657, "vertical_depth": 2881.591}, {"gradient": -3.735528583244294, "_id": "5vroajOre4", "elevation": -2865.945, "temperature": 84.8026185026589, "vertical_depth": 2890.945}, {"gradient": -3.735528583238399, "_id": "1z8LlOP8Qj", "elevation": -2875.299, "temperature": 84.76767636829129, "vertical_depth": 2900.299}, {"gradient": 59.54850152653266, "_id": "1O56vam5pM", "elevation": -2875.399, "temperature": 84.77363121844394, "vertical_depth": 2900.399}, {"gradient": -9.403279221065818, "_id": "PLkP3XqkoK", "elevation": -2875.498, "temperature": 84.77270029380105, "vertical_depth": 2900.498}, {"gradient": 25.72368230138272, "_id": "gWjyJkLj4O", "elevation": -2883.604, "temperature": 84.98121646253605, "vertical_depth": 2908.604}, {"gradient": 25.72368230138829, "_id": "rknVl41nAJ", "elevation": -2891.71, "temperature": 85.18973263127111, "vertical_depth": 2916.71}, {"gradient": 18.651425926017556, "_id": "1WP04N9P7a", "elevation": -2899.815, "temperature": 85.34090243840149, "vertical_depth": 2924.815}, {"gradient": 18.649124985235645, "_id": "8olBXW4lnR", "elevation": -2907.921, "temperature": 85.4920722455318, "vertical_depth": 2932.921}, {"gradient": 14.216289847376197, "_id": "WP8gm1G828", "elevation": -2916.026, "temperature": 85.60729527474479, "vertical_depth": 2941.026}, {"gradient": 14.214536048980756, "_id": "zNKP0MJK73", "elevation": -2924.132, "temperature": 85.72251830395783, "vertical_depth": 2949.132}, {"gradient": -40.927631783953004, "_id": "3lkBzJ3kP9", "elevation": -2924.232, "temperature": 85.71842554077944, "vertical_depth": 2949.232}, {"gradient": 19.599034682970906, "_id": "RNMaW9DMRB", "elevation": -2924.331, "temperature": 85.72036584521305, "vertical_depth": 2949.331}, {"gradient": -11.98102461429236, "_id": "Pq6wOWb621", "elevation": -2932.568, "temperature": 85.62167814546513, "vertical_depth": 2957.568}, {"gradient": -11.981024614293021, "_id": "DmYlJe1YWn", "elevation": -2940.805, "temperature": 85.5229904457172, "vertical_depth": 2965.805}, {"gradient": -6.596080820982839, "_id": "o6aqMgGaQN", "elevation": -2949.042, "temperature": 85.46865852799476, "vertical_depth": 2974.042}, {"gradient": -6.595280131388378, "_id": "Domk8jxmr4", "elevation": -2957.28, "temperature": 85.41432661027238, "vertical_depth": 2982.28}, {"gradient": -2.8926252964114374, "_id": "05PLoX7PNz", "elevation": -2965.517, "temperature": 85.39050005570584, "vertical_depth": 2990.517}, {"gradient": -2.8926252964112775, "_id": "PmGOx4pGll", "elevation": -2973.754, "temperature": 85.3666735011393, "vertical_depth": 2998.754}, {"gradient": 11.78400490843018, "_id": "Eyz3WkXzn7", "elevation": -2976.355, "temperature": 85.39732369790613, "vertical_depth": 3001.355}, {"gradient": 11.784004908408326, "_id": "Y39Nq0K9DR", "elevation": -2978.956, "temperature": 85.4279738946729, "vertical_depth": 3003.956}, {"gradient": -3366.919158625243, "_id": "YVzxj7kzB0", "elevation": -2979.056, "temperature": 85.09128197881068, "vertical_depth": 3004.056}, {"gradient": -11.477024094130208, "_id": "GyJrq61JGl", "elevation": -2979.156, "temperature": 85.09013427640127, "vertical_depth": 3004.156}, {"gradient": -11.492580300935822, "_id": "vDOPv7qOrV", "elevation": -2987.456, "temperature": 84.9947458599035, "vertical_depth": 3012.456}, {"gradient": -11.4925803009433, "_id": "8Dgpo9ayGk", "elevation": -2995.756, "temperature": 84.89935744340568, "vertical_depth": 3020.756}, {"gradient": -11.492580300935822, "_id": "jz5Dwpl5N0", "elevation": -3004.056, "temperature": 84.80396902690791, "vertical_depth": 3029.056}, {"gradient": -11.385674142359766, "_id": "QbJpnYAJBO", "elevation": -3012.356, "temperature": 84.70946793152632, "vertical_depth": 3037.356}, {"gradient": 6.872209369096281, "_id": "xJN18g9NyE", "elevation": -3020.655, "temperature": 84.76650039708045, "vertical_depth": 3045.655}, {"gradient": 6.8507114136643334, "_id": "AE9NRxk9kq", "elevation": -3028.955, "temperature": 84.82336130181386, "vertical_depth": 3053.955}, {"gradient": 9.027297468264608, "_id": "GX8GAd1813", "elevation": -3037.255, "temperature": 84.89828787080046, "vertical_depth": 3062.255}, {"gradient": 11.781858237321007, "_id": "kXzBYlDzoo", "elevation": -3045.555, "temperature": 84.99607729417022, "vertical_depth": 3070.555}, {"gradient": 16827.40003179578, "_id": "xyE2dw0EDW", "elevation": -3045.655, "temperature": 86.67881729735592, "vertical_depth": 3070.655}, {"gradient": 11.765910467158179, "_id": "VE2j10J21p", "elevation": -3045.755, "temperature": 86.67999388840263, "vertical_depth": 3070.755}, {"gradient": 11.782040977972791, "_id": "edPpAbOPq0", "elevation": -3055.689, "temperature": 86.79703668347781, "vertical_depth": 3080.689}, {"gradient": 11.782040977966531, "_id": "R021D532DJ", "elevation": -3065.623, "temperature": 86.91407947855294, "vertical_depth": 3090.623}, {"gradient": 11.782040977972791, "_id": "Ed76elm7ep", "elevation": -3075.557, "temperature": 87.03112227362811, "vertical_depth": 3100.557}, {"gradient": 11.782040977966531, "_id": "rl6X9Z76BW", "elevation": -3085.491, "temperature": 87.14816506870324, "vertical_depth": 3110.491}, {"gradient": 5.090700667579167, "_id": "1Q7AEKM7vo", "elevation": -3095.425, "temperature": 87.19873608913497, "vertical_depth": 3120.425}, {"gradient": 6.812549297185562, "_id": "WagdEMJg2r", "elevation": -3105.359, "temperature": 87.26641195385321, "vertical_depth": 3130.359}, {"gradient": 6.781480112971588, "_id": "GojWkYZjJb", "elevation": -3115.293, "temperature": 87.33377917729547, "vertical_depth": 3140.293}, {"gradient": 5.0567157624346395, "_id": "kmqdQW9qXa", "elevation": -3125.227, "temperature": 87.3840125916795, "vertical_depth": 3150.227}, {"gradient": 5.0227045517358455, "_id": "g0ZKgDnZL8", "elevation": -3135.161, "temperature": 87.43390813869644, "vertical_depth": 3160.161}, {"gradient": 6.753021075096616, "_id": "wOonM32o8V", "elevation": -3145.095, "temperature": 87.50099265005645, "vertical_depth": 3170.095}, {"gradient": 4.974476206863818, "_id": "9VG4YQZGrQ", "elevation": -3155.029, "temperature": 87.55040909669543, "vertical_depth": 3180.029}, {"gradient": 6.712076361791563, "_id": "kzZky71Z8E", "elevation": -3164.963, "temperature": 87.61708686327347, "vertical_depth": 3189.963}, {"gradient": 4.868445404280053, "_id": "y4ORLpVODe", "elevation": -3174.897, "temperature": 87.66544999991959, "vertical_depth": 3199.897}, {"gradient": 6.61712770562222, "_id": "xrZ2OVPZXG", "elevation": -3184.831, "temperature": 87.73118454654724, "vertical_depth": 3209.831}, {"gradient": 4.834447974522802, "_id": "8eOEXMAOdL", "elevation": -3194.765, "temperature": 87.77920995272615, "vertical_depth": 3219.765}, {"gradient": 6.589247379064314, "_id": "Wovj5x9Y4z", "elevation": -3204.699, "temperature": 87.84466753618977, "vertical_depth": 3229.699}, {"gradient": 6.562520695122767, "_id": "zDjmV36j7a", "elevation": -3214.633, "temperature": 87.90985961677512, "vertical_depth": 3239.633}, {"gradient": 4.80052661161106, "_id": "w9MDOboMkW", "elevation": -3224.567, "temperature": 87.95754804813487, "vertical_depth": 3249.567}, {"gradient": 4.766255005576664, "_id": "rBQ3PjZQpp", "elevation": -3234.501, "temperature": 88.00489602536027, "vertical_depth": 3259.501}, {"gradient": 6.534761146992878, "_id": "eX3xk7l3ZW", "elevation": -3244.434, "temperature": 88.06980580783335, "vertical_depth": 3269.434}, {"gradient": 6.505653639979887, "_id": "JoAeREO5Vl", "elevation": -3254.368, "temperature": 88.1344329710929, "vertical_depth": 3279.368}, {"gradient": 4.731894802487829, "_id": "jLdZ1g6bNR", "elevation": -3264.302, "temperature": 88.18143961406082, "vertical_depth": 3289.302}, {"gradient": 6.47717271933386, "_id": "q7Y9O6QYlj", "elevation": -3274.236, "temperature": 88.24578384785468, "vertical_depth": 3299.236}, {"gradient": 4.697445977064279, "_id": "R9yLeDmM0A", "elevation": -3284.17, "temperature": 88.29244827619084, "vertical_depth": 3309.17}, {"gradient": 6.448661693551454, "_id": "bRwl6nPKrA", "elevation": -3294.104, "temperature": 88.35650928145458, "vertical_depth": 3319.104}, {"gradient": 4.662908506125759, "_id": "8yD80AkpQD", "elevation": -3304.038, "temperature": 88.40283061455443, "vertical_depth": 3329.038}, {"gradient": 6.401089405750494, "_id": "gA1BEjZw6x", "elevation": -3313.972, "temperature": 88.46641903671116, "vertical_depth": 3338.972}, {"gradient": 4.607009258283515, "_id": "nY4pRvBGOB", "elevation": -3323.906, "temperature": 88.51218506668295, "vertical_depth": 3348.906}, {"gradient": 4.454014195971837, "_id": "w4AELzZ1ky", "elevation": -3333.84, "temperature": 88.55643124370573, "vertical_depth": 3358.84}, {"gradient": 6.2614742102395695, "_id": "7aB5lzn4MG", "elevation": -3343.774, "temperature": 88.61863272851025, "vertical_depth": 3368.774}, {"gradient": 4.419312988990093, "_id": "jvO6DaZq0M", "elevation": -3353.708, "temperature": 88.66253418374288, "vertical_depth": 3378.708}, {"gradient": 6.236760951980079, "_id": "WW2ZqLBJ3A", "elevation": -3363.642, "temperature": 88.72449016703985, "vertical_depth": 3388.642}, {"gradient": 6.20756941563541, "_id": "5qVnN6DmKp", "elevation": -3373.576, "temperature": 88.78615616161477, "vertical_depth": 3398.576}, {"gradient": 4.384618327916562, "_id": "1BQnJdq5nR", "elevation": -3383.51, "temperature": 88.8297129600843, "vertical_depth": 3408.51}, {"gradient": 4.3502100761056415, "_id": "m3gMWvND7v", "elevation": -3393.444, "temperature": 88.87292794698033, "vertical_depth": 3418.444}, {"gradient": 6.157904489772448, "_id": "Z9NAbq1vX2", "elevation": -3403.378, "temperature": 88.93410057018173, "vertical_depth": 3428.378}, {"gradient": 6.129739266597328, "_id": "jvPpMax1ek", "elevation": -3413.312, "temperature": 88.9949934000561, "vertical_depth": 3438.312}, {"gradient": 4.315212583274342, "_id": "QlqvO9KX4B", "elevation": -3423.246, "temperature": 89.03786072185835, "vertical_depth": 3448.246}, {"gradient": 4.280072892305246, "_id": "yoLZealYPA", "elevation": -3433.18, "temperature": 89.08037896597051, "vertical_depth": 3458.18}, {"gradient": 6.10150200961477, "_id": "0XBaMqbJ2j", "elevation": -3443.114, "temperature": 89.14099128693402, "vertical_depth": 3468.114}, {"gradient": 4.244977667160438, "_id": "RMOVrbQnOP", "elevation": -3453.048, "temperature": 89.1831608950796, "vertical_depth": 3478.048}, {"gradient": 6.073153657182894, "_id": "ZrJnQ01l84", "elevation": -3462.982, "temperature": 89.24349160351005, "vertical_depth": 3487.982}, {"gradient": -8411.212451505582, "_id": "NKXwaR2eXJ", "elevation": -3463.082, "temperature": 88.40237035836026, "vertical_depth": 3488.082}, {"gradient": -1634.8582559525173, "_id": "WMbdD9mGbL", "elevation": -3463.182, "temperature": 88.23888453276516, "vertical_depth": 3488.182}, {"gradient": 8.134054974335424, "_id": "xom02Z6NN8", "elevation": -3473.132, "temperature": 88.3198183797598, "vertical_depth": 3498.132}, {"gradient": 5.872538275860903, "_id": "opYW0Omo3r", "elevation": -3483.081, "temperature": 88.37824426306634, "vertical_depth": 3508.081}, {"gradient": 5.825492664414792, "_id": "o3jrNlB53M", "elevation": -3493.031, "temperature": 88.43620791507726, "vertical_depth": 3518.031}, {"gradient": 8.097740350457297, "_id": "zqJPeykMqN", "elevation": -3502.981, "temperature": 88.51678043156431, "vertical_depth": 3527.981}, {"gradient": 8.062531600976934, "_id": "71NwRLM2EY", "elevation": -3512.931, "temperature": 88.59700262099403, "vertical_depth": 3537.931}, {"gradient": 5.779413877983303, "_id": "wnAR39Pbnz", "elevation": -3522.88, "temperature": 88.65450200966609, "vertical_depth": 3547.88}, {"gradient": 5.733189671160566, "_id": "XmlVRLv21a", "elevation": -3532.828, "temperature": 88.7115357805148, "vertical_depth": 3557.828}, {"gradient": 8.037356703651366, "_id": "V3Lyl20W24", "elevation": -3542.776, "temperature": 88.79149140500272, "vertical_depth": 3567.776}, {"gradient": 7.97327916547407, "_id": "e60BzQ8gQY", "elevation": -3552.718, "temperature": 88.87076174646586, "vertical_depth": 3577.718}, {"gradient": 5.692391375489252, "_id": "9gDpa4n37g", "elevation": -3562.654, "temperature": 88.92732134717272, "vertical_depth": 3587.654}, {"gradient": 5.648542975494824, "_id": "mOZjQJvWKq", "elevation": -3572.579, "temperature": 88.98338313620451, "vertical_depth": 3597.579}, {"gradient": 7.940234773366629, "_id": "qje8BgbZgp", "elevation": -3582.495, "temperature": 89.06211850421721, "vertical_depth": 3607.495}, {"gradient": 7.902970802347446, "_id": "3qXpGzgQlj", "elevation": -3592.398, "temperature": 89.14038162407286, "vertical_depth": 3617.398}, {"gradient": 5.617614511378064, "_id": "ZzyALMmrO5", "elevation": -3602.287, "temperature": 89.19593421397587, "vertical_depth": 3627.287}, {"gradient": 7.872077735290859, "_id": "z1YdAW7PnX", "elevation": -3612.162, "temperature": 89.27367098161187, "vertical_depth": 3637.162}, {"gradient": 5.582290093611525, "_id": "KjKnAd2Nlr", "elevation": -3622.021, "temperature": 89.32870677964479, "vertical_depth": 3647.021}, {"gradient": 5.4948881558530225, "_id": "OVjdPem4pk", "elevation": -3631.862, "temperature": 89.38278197398654, "vertical_depth": 3656.862}, {"gradient": 7.820937171001487, "_id": "GKlM6rbdQ2", "elevation": -3641.685, "temperature": 89.45960703981729, "vertical_depth": 3666.685}, {"gradient": 5.428991663683801, "_id": "ayk2A9X8ze", "elevation": -3651.488, "temperature": 89.51282744509638, "vertical_depth": 3676.488}, {"gradient": 7.768912155538743, "_id": "l24QzoGlJm", "elevation": -3661.27, "temperature": 89.58882294380186, "vertical_depth": 3686.27}, {"gradient": 7.728916545154096, "_id": "zp3D6vawGQ", "elevation": -3671.03, "temperature": 89.66425716928256, "vertical_depth": 3696.03}, {"gradient": 5.411545121815345, "_id": "ekv6x1nEpb", "elevation": -3680.765, "temperature": 89.71693856104343, "vertical_depth": 3705.765}, {"gradient": 7.708670700862756, "_id": "m1JjLApVX4", "elevation": -3690.475, "temperature": 89.79178975354881, "vertical_depth": 3715.475}, {"gradient": 5.384180214336103, "_id": "KVJW8RK4GG", "elevation": -3700.158, "temperature": 89.84392477056423, "vertical_depth": 3725.158}, {"gradient": 5.3419254691853455, "_id": "OZyv42GBqD", "elevation": -3709.814, "temperature": 89.89550640289468, "vertical_depth": 3734.814}, {"gradient": 7.713207428676918, "_id": "20RZVy9DlB", "elevation": -3719.44, "temperature": 89.96975373760313, "vertical_depth": 3744.44}, {"gradient": 7.673729227566538, "_id": "EXGogyk8Av", "elevation": -3729.036, "temperature": 90.04339084327086, "vertical_depth": 3754.036}, {"gradient": 5.334820434230549, "_id": "WaAmy29z5R", "elevation": -3738.6, "temperature": 90.09441306590384, "vertical_depth": 3763.6}, {"gradient": 5.293287814743235, "_id": "v5vdKEW97z", "elevation": -3748.132, "temperature": 90.14486868535397, "vertical_depth": 3773.132}, {"gradient": 7.684781088733206, "_id": "lDBWYk1RxV", "elevation": -3757.63, "temperature": 90.21785873613476, "vertical_depth": 3782.63}, {"gradient": 7.6442468007831925, "_id": "O4PWejpaAd", "elevation": -3767.091, "temperature": 90.29018095511697, "vertical_depth": 3792.091}, {"gradient": 5.292621901452415, "_id": "j68NBx5OJL", "elevation": -3776.516, "temperature": 90.34006391653816, "vertical_depth": 3801.516}, {"gradient": 7.62988944232202, "_id": "x3qMVzjZRx", "elevation": -3785.902, "temperature": 90.41167805884379, "vertical_depth": 3810.902}, {"gradient": 5.2748442196042715, "_id": "9deJk78W6B", "elevation": -3795.249, "temperature": 90.46098202776443, "vertical_depth": 3820.249}, {"gradient": 7.614970699372649, "_id": "QXaLNZk1bN", "elevation": -3804.556, "temperature": 90.5318545600635, "vertical_depth": 3829.556}, {"gradient": 5.258571024993535, "_id": "d0gm4rOqWr", "elevation": -3813.821, "temperature": 90.58057522061006, "vertical_depth": 3838.821}, {"gradient": 5.2198175452121145, "_id": "jjKAz57wam", "elevation": -3823.042, "temperature": 90.62870715819446, "vertical_depth": 3848.042}, {"gradient": 7.642766374117674, "_id": "2EwbL7pjW1", "elevation": -3832.22, "temperature": 90.69885246797611, "vertical_depth": 3857.22}, {"gradient": 5.2063264300792955, "_id": "aKXn9x3LAO", "elevation": -3841.351, "temperature": 90.74639143460917, "vertical_depth": 3866.351}, {"gradient": 7.639858304627902, "_id": "2AZoY0b6JN", "elevation": -3850.436, "temperature": 90.81579954730671, "vertical_depth": 3875.436}, {"gradient": 7.5968318277365725, "_id": "D7mDlzMXBx", "elevation": -3859.473, "temperature": 90.88445211653396, "vertical_depth": 3884.473}, {"gradient": 5.223421120482946, "_id": "E7KRXByWp7", "elevation": -3868.46, "temperature": 90.93139500214374, "vertical_depth": 3893.46}, {"gradient": 7.511135370687211, "_id": "RR9qrwPoG9", "elevation": -3877.397, "temperature": 90.99852201895158, "vertical_depth": 3902.397}, {"gradient": 5.120699091549016, "_id": "R85oOZe2n1", "elevation": -3886.282, "temperature": 91.04401943037999, "vertical_depth": 3911.282}, {"gradient": 5.02880089972261, "_id": "Z8O7LZMKg5", "elevation": -3895.136, "temperature": 91.08854443354613, "vertical_depth": 3920.136}, {"gradient": 7.470007336593362, "_id": "RwrNxy40mA", "elevation": -3903.99, "temperature": 91.15468387850433, "vertical_depth": 3928.99}, {"gradient": 7.432482012390181, "_id": "J8OvEDWagN", "elevation": -3912.844, "temperature": 91.22049107424203, "vertical_depth": 3937.844}, {"gradient": 4.980806939073859, "_id": "D1N9AeEzw0", "elevation": -3921.697, "temperature": 91.26458615807366, "vertical_depth": 3946.697}, {"gradient": 4.931648723194261, "_id": "Mzv6aBk0Me", "elevation": -3930.551, "temperature": 91.30825097586882, "vertical_depth": 3955.551}, {"gradient": 7.395904204734029, "_id": "G7RmleLw5G", "elevation": -3939.404, "temperature": 91.37372691579333, "vertical_depth": 3964.404}, {"gradient": 7.357648065157645, "_id": "zPZKJGlMD0", "elevation": -3948.258, "temperature": 91.43887153176223, "vertical_depth": 3973.258}, {"gradient": 4.8829197920063665, "_id": "oP913k6Gv8", "elevation": -3957.112, "temperature": 91.48210490360066, "vertical_depth": 3982.112}, {"gradient": 4.834664656159873, "_id": "24eoV1Y8AN", "elevation": -3965.965, "temperature": 91.52490618980164, "vertical_depth": 3990.965}, {"gradient": 7.321653934202385, "_id": "LKRwYlbgXV", "elevation": -3974.819, "temperature": 91.58973211373507, "vertical_depth": 3999.819}, {"gradient": 4.785175850809127, "_id": "zAPVBX4Egx", "elevation": -3983.673, "temperature": 91.63210006071813, "vertical_depth": 4008.673}, {"gradient": 7.282856569138636, "_id": "xmN3XwORb0", "elevation": -3992.526, "temperature": 91.69657518992472, "vertical_depth": 4017.526}, {"gradient": 4.7359269428807105, "_id": "Lgj26ZN50Y", "elevation": -4001.38, "temperature": 91.73850708707698, "vertical_depth": 4026.38}, {"gradient": 7.2490030503108915, "_id": "JBgKz1lLEG", "elevation": -4010.234, "temperature": 91.80268976008443, "vertical_depth": 4035.234}, {"gradient": 4.687383793691065, "_id": "9AOM1DjmjA", "elevation": -4019.087, "temperature": 91.84418716880998, "vertical_depth": 4044.087}, {"gradient": 7.204796572218693, "_id": "GPy0w2WvWD", "elevation": -4027.941, "temperature": 91.9079784376604, "vertical_depth": 4052.941}, {"gradient": 7.154170697927015, "_id": "ogdmjbJOXX", "elevation": -4036.794, "temperature": 91.97131431084915, "vertical_depth": 4061.794}, {"gradient": 4.637811789126158, "_id": "b1A6vpanrk", "elevation": -4045.648, "temperature": 92.01237749643008, "vertical_depth": 4070.648}, {"gradient": 7.116380193564849, "_id": "x1rqKdbBYA", "elevation": -4054.502, "temperature": 92.0753859266639, "vertical_depth": 4079.502}, {"gradient": 4.5887358217998, "_id": "NRmDxqvyxJ", "elevation": -4063.355, "temperature": 92.11601000489429, "vertical_depth": 4088.355}, {"gradient": 4.538418862630423, "_id": "nrPQbGjxbB", "elevation": -4072.209, "temperature": 92.15619316550402, "vertical_depth": 4097.209}, {"gradient": 7.079437524099336, "_id": "2ODlg4j78D", "elevation": -4081.063, "temperature": 92.2188745053424, "vertical_depth": 4106.063}, {"gradient": 7.0079871817421315, "_id": "RJzGNgMLNj", "elevation": -4089.916, "temperature": 92.28091621586236, "vertical_depth": 4114.916}, {"gradient": 4.447175914266239, "_id": "lLAol3kpOg", "elevation": -4098.77, "temperature": 92.32029151140728, "vertical_depth": 4123.77}, {"gradient": 6.944782632406254, "_id": "Ezr6AyYG4E", "elevation": -4107.623, "temperature": 92.38177367205196, "vertical_depth": 4132.623}, {"gradient": 4.3675767007899315, "_id": "oKz0yXY8jm", "elevation": -4116.477, "temperature": 92.42044419616076, "vertical_depth": 4141.477}, {"gradient": 4.317544942350391, "_id": "wwbM9YB1aK", "elevation": -4125.331, "temperature": 92.45867173908033, "vertical_depth": 4150.331}, {"gradient": 6.908012799568681, "_id": "nOV9lBayvp", "elevation": -4134.184, "temperature": 92.51982837639491, "vertical_depth": 4159.184}, {"gradient": 6.870152605185251, "_id": "AB0zeEvkoy", "elevation": -4143.038, "temperature": 92.58065670756122, "vertical_depth": 4168.038}, {"gradient": 4.2673598476136, "_id": "AKA2Ly7z4z", "elevation": -4151.892, "temperature": 92.61843991165199, "vertical_depth": 4176.892}, {"gradient": 6.833314820928655, "_id": "8mY2Gdr56g", "elevation": -4160.745, "temperature": 92.67893524776167, "vertical_depth": 4185.745}, {"gradient": 4.2170056408230785, "_id": "Z5y9M7n0z3", "elevation": -4169.599, "temperature": 92.71627261570552, "vertical_depth": 4194.599}, {"gradient": 4.16663372175421, "_id": "93Ex5jZlJW", "elevation": -4178.453, "temperature": 92.75316399067793, "vertical_depth": 4203.453}, {"gradient": 6.794284131101359, "_id": "RWMEme7xPK", "elevation": -4187.306, "temperature": 92.81331378809057, "vertical_depth": 4212.306}, {"gradient": 4.116108915851712, "_id": "jyM1b3OQBZ", "elevation": -4196.16, "temperature": 92.84975781643152, "vertical_depth": 4221.16}, {"gradient": 6.757158334283295, "_id": "LX35B1gGAd", "elevation": -4205.013, "temperature": 92.90957893916493, "vertical_depth": 4230.013}, {"gradient": 4.0654629423853175, "_id": "e9MEWbQ1nB", "elevation": -4213.867, "temperature": 92.94557454805681, "vertical_depth": 4238.867}, {"gradient": 6.7211592525354815, "_id": "Xq5JkXA9mR", "elevation": -4222.721, "temperature": 93.00508369207876, "vertical_depth": 4247.721}, {"gradient": 6.687562254638765, "_id": "pomBVQdqJK", "elevation": -4231.574, "temperature": 93.06428868071907, "vertical_depth": 4256.574}, {"gradient": 4.014920632966325, "_id": "ppbKREk3rm", "elevation": -4240.428, "temperature": 93.09983678800336, "vertical_depth": 4265.428}, {"gradient": 3.9639628477377653, "_id": "y48NbPjvgd", "elevation": -4249.282, "temperature": 93.13493371505723, "vertical_depth": 4274.282}, {"gradient": 6.651228695837842, "_id": "nLwWQKpZz9", "elevation": -4258.135, "temperature": 93.19381704270148, "vertical_depth": 4283.135}, {"gradient": 6.613996111752484, "_id": "x4ENVAxdnO", "elevation": -4266.989, "temperature": 93.25237736427493, "vertical_depth": 4291.989}, {"gradient": 3.9132764234435307, "_id": "WGezXojlzx", "elevation": -4275.842, "temperature": 93.28702160045168, "vertical_depth": 4300.842}, {"gradient": 6.577745358646168, "_id": "ldyVzB7P4L", "elevation": -4284.696, "temperature": 93.34526095785714, "vertical_depth": 4309.696}, {"gradient": 3.86157245413621, "_id": "DO6Nk7znNe", "elevation": -4293.55, "temperature": 93.37945132036606, "vertical_depth": 4318.55}, {"gradient": 3.81061185141324, "_id": "9ova5069Eq", "elevation": -4302.403, "temperature": 93.41318666708662, "vertical_depth": 4327.403}, {"gradient": 6.54158331241845, "_id": "ajBYG1ovY9", "elevation": -4311.257, "temperature": 93.47110584573477, "vertical_depth": 4336.257}, {"gradient": 3.758685897957326, "_id": "XPxLg3bnw8", "elevation": -4320.111, "temperature": 93.50438525067528, "vertical_depth": 4345.111}, {"gradient": 6.506853794018552, "_id": "DbOG4xzvGx", "elevation": -4328.964, "temperature": 93.56199042731373, "vertical_depth": 4353.964}, {"gradient": 6.471054471484777, "_id": "LmyEbxWMV6", "elevation": -4337.818, "temperature": 93.61928514360426, "vertical_depth": 4362.818}, {"gradient": 3.707069578627164, "_id": "qPn0Av1qZ6", "elevation": -4346.672, "temperature": 93.65210753765342, "vertical_depth": 4371.672}, {"gradient": 3.65569966571774, "_id": "aPlQ7AJW5w", "elevation": -4355.525, "temperature": 93.68447144679402, "vertical_depth": 4380.525}, {"gradient": 6.435178459221468, "_id": "vyQlv0zjdb", "elevation": -4364.379, "temperature": 93.74144851687197, "vertical_depth": 4389.379}, {"gradient": 6.398477412126824, "_id": "Mdv7np4yLR", "elevation": -4373.232, "temperature": 93.79809423740153, "vertical_depth": 4398.232}, {"gradient": 3.603410935418296, "_id": "QDxQve1GYB", "elevation": -4382.086, "temperature": 93.82999883782372, "vertical_depth": 4407.086}, {"gradient": 3.5513936314212686, "_id": "M8JEn6dmW4", "elevation": -4390.94, "temperature": 93.86144287703632, "vertical_depth": 4415.94}, {"gradient": 6.361642175860916, "_id": "7erzVwDNZG", "elevation": -4399.793, "temperature": 93.91776249521922, "vertical_depth": 4424.793}, {"gradient": 6.325511589821534, "_id": "xxnp702lWX", "elevation": -4408.647, "temperature": 93.9737685748355, "vertical_depth": 4433.647}, {"gradient": 3.499222316234247, "_id": "6WENDV4AEJ", "elevation": -4417.501, "temperature": 94.00475068922344, "vertical_depth": 4442.501}, {"gradient": 3.447314268703267, "_id": "ERp60PEdmm", "elevation": -4426.354, "temperature": 94.03526976244427, "vertical_depth": 4451.354}, {"gradient": 6.290249784136897, "_id": "MXxoNMLOxm", "elevation": -4435.208, "temperature": 94.09096363403302, "vertical_depth": 4460.208}, {"gradient": 6.256646461586165, "_id": "KKa5B6rPEw", "elevation": -4444.061, "temperature": 94.14635372515744, "vertical_depth": 4469.061}, {"gradient": 3.394532291588761, "_id": "ppyKzmA8p8", "elevation": -4452.915, "temperature": 94.17640891406717, "vertical_depth": 4477.915}, {"gradient": 3.342003420819893, "_id": "WQNRqXBMMm", "elevation": -4461.769, "temperature": 94.20599901235511, "vertical_depth": 4486.769}, {"gradient": 6.222331598760336, "_id": "mx3mQK9119", "elevation": -4470.622, "temperature": 94.26108531399893, "vertical_depth": 4495.622}, {"gradient": 3.2665181165479806, "_id": "06W7NGDE6x", "elevation": -4479.476, "temperature": 94.29000706540285, "vertical_depth": 4504.476}, {"gradient": 6.166783557202249, "_id": "5klN5jRpyJ", "elevation": -4488.33, "temperature": 94.34460776701832, "vertical_depth": 4513.33}, {"gradient": 6.053090282527876, "_id": "PPdOqapy6d", "elevation": -4497.183, "temperature": 94.39819577528954, "vertical_depth": 4522.183}, {"gradient": 3.1229671896629227, "_id": "vWnPwoQgo7", "elevation": -4506.037, "temperature": 94.42584652678681, "vertical_depth": 4531.037}, {"gradient": 3.070505819478415, "_id": "EZW4YRmjZL", "elevation": -4514.891, "temperature": 94.45303278531247, "vertical_depth": 4539.891}, {"gradient": 6.019235868891523, "_id": "GzLBGdQ8ox", "elevation": -4523.744, "temperature": 94.50632108045977, "vertical_depth": 4548.744}, {"gradient": 3.017044208098685, "_id": "vV6bN7lGYp", "elevation": -4532.598, "temperature": 94.53303398987828, "vertical_depth": 4557.598}, {"gradient": 5.984847868342449, "_id": "oX8Gj5J6g4", "elevation": -4541.451, "temperature": 94.58601784805671, "vertical_depth": 4566.451}, {"gradient": 2.9003324865426574, "_id": "21LReWJmaj", "elevation": -4550.305, "temperature": 94.61169739189256, "vertical_depth": 4575.305}, {"gradient": 5.894612337131005, "_id": "GzZ1r28G34", "elevation": -4559.159, "temperature": 94.66388828952552, "vertical_depth": 4584.159}, {"gradient": 5.8619827753254, "_id": "3zwBbWj2gX", "elevation": -4568.012, "temperature": 94.71578442303547, "vertical_depth": 4593.012}, {"gradient": 2.8475659571696017, "_id": "NLaPZvJMbl", "elevation": -4576.866, "temperature": 94.74099677202025, "vertical_depth": 4601.866}, {"gradient": 2.7947330088232203, "_id": "8J8qVBgOaD", "elevation": -4585.72, "temperature": 94.76574133808037, "vertical_depth": 4610.72}, {"gradient": 5.827722550961379, "_id": "zM7Ql320rV", "elevation": -4594.573, "temperature": 94.81733416582404, "vertical_depth": 4619.573}, {"gradient": 2.741685348650758, "_id": "XVWyMlzm9z", "elevation": -4603.427, "temperature": 94.84160904790099, "vertical_depth": 4628.427}, {"gradient": 5.797201630522558, "_id": "KmK8xZLwXe", "elevation": -4612.28, "temperature": 94.892931673936, "vertical_depth": 4637.28}, {"gradient": 5.760068909319583, "_id": "KNQDjmVqoV", "elevation": -4621.134, "temperature": 94.94393132405912, "vertical_depth": 4646.134}, {"gradient": 2.688842275325308, "_id": "JAEk3LVj24", "elevation": -4629.988, "temperature": 94.96773833356485, "vertical_depth": 4654.988}, {"gradient": 2.635993358681498, "_id": "mLrMyq67J7", "elevation": -4638.841, "temperature": 94.99107478276926, "vertical_depth": 4663.841}, {"gradient": 5.7274199038905875, "_id": "7P6rDwQeq5", "elevation": -4647.695, "temperature": 95.0417853585983, "vertical_depth": 4672.695}, {"gradient": 5.695834850701335, "_id": "VxG6ogN89R", "elevation": -4656.549, "temperature": 95.09221628036642, "vertical_depth": 4681.549}, {"gradient": 2.5825979533025865, "_id": "0Rbkd6o5g3", "elevation": -4665.402, "temperature": 95.115080020047, "vertical_depth": 4690.402}, {"gradient": 2.528790498591123, "_id": "vXGVLpq0O9", "elevation": -4674.256, "temperature": 95.13746993112153, "vertical_depth": 4699.256}, {"gradient": 5.66508711564024, "_id": "zNBxGgWy5P", "elevation": -4683.11, "temperature": 95.1876286124434, "vertical_depth": 4708.11}, {"gradient": 2.475508934983581, "_id": "DYpPy5lk3Q", "elevation": -4691.963, "temperature": 95.20954429304481, "vertical_depth": 4716.963}, {"gradient": 5.636699734729303, "_id": "p5JObE4B7q", "elevation": -4700.817, "temperature": 95.25945163249611, "vertical_depth": 4725.817}, {"gradient": 5.607773660432905, "_id": "qm0OKxpkbm", "elevation": -4709.67, "temperature": 95.30909725271192, "vertical_depth": 4734.67}, {"gradient": 2.4214940379122405, "_id": "wJpmDyewoz", "elevation": -4718.524, "temperature": 95.3305371609236, "vertical_depth": 4743.524}, {"gradient": 2.3676335630104304, "_id": "dMnLGgVKxx", "elevation": -4727.378, "temperature": 95.35150018849049, "vertical_depth": 4752.378}, {"gradient": 5.578268030520283, "_id": "gKDl5XLA2J", "elevation": -4736.231, "temperature": 95.40088459536469, "vertical_depth": 4761.231}, {"gradient": 5.548640035142943, "_id": "m7o1O2D9qk", "elevation": -4745.085, "temperature": 95.45001225423584, "vertical_depth": 4770.085}, {"gradient": 2.3136638604485134, "_id": "8kOv04awVl", "elevation": -4753.939, "temperature": 95.47049743405626, "vertical_depth": 4778.939}, {"gradient": 7748.314265294069, "_id": "P67Ye3Ogba", "elevation": -4754.027, "temperature": 96.1523490894001, "vertical_depth": 4779.027}, {"gradient": 1149.9541391513264, "_id": "knJ4Ve2XyL", "elevation": -4754.116, "temperature": 96.2546950077845, "vertical_depth": 4779.116}, {"gradient": 0.9151423731542393, "_id": "neAz3wp8yM", "elevation": -4762.678, "temperature": 96.26253045678345, "vertical_depth": 4787.678}, {"gradient": 2.7865549775838243, "_id": "93bLOg7mdE", "elevation": -4771.24, "temperature": 96.28638894050152, "vertical_depth": 4796.24}, {"gradient": 2.7755512877052224, "_id": "qvl07rNq1J", "elevation": -4779.801, "temperature": 96.31015043507557, "vertical_depth": 4804.801}, {"gradient": 0.890155078261227, "_id": "zAozMJRXkE", "elevation": -4788.363, "temperature": 96.31777194285564, "vertical_depth": 4813.363}, {"gradient": 2.764088409829682, "_id": "EL43xjDrbG", "elevation": -4796.925, "temperature": 96.3414380678206, "vertical_depth": 4821.925}, {"gradient": 0.8652314084214627, "_id": "Kb7OEoxa0K", "elevation": -4805.486, "temperature": 96.3488453139081, "vertical_depth": 4830.486}, {"gradient": 2.754457220415103, "_id": "MBwoY0xKZM", "elevation": -4814.048, "temperature": 96.3724289766293, "vertical_depth": 4839.048}, {"gradient": 0.8400531570924626, "_id": "pw9QYlOJMk", "elevation": -4822.61, "temperature": 96.37962151176032, "vertical_depth": 4847.61}, {"gradient": 0.8150325739289648, "_id": "75R7jzDkx9", "elevation": -4831.171, "temperature": 96.38659900562573, "vertical_depth": 4856.171}, {"gradient": 2.7453068628416326, "_id": "gnZAxjDOMV", "elevation": -4839.733, "temperature": 96.41010432298538, "vertical_depth": 4864.733}, {"gradient": 2.73667265471811, "_id": "E13JaxyN0y", "elevation": -4848.295, "temperature": 96.43353571425507, "vertical_depth": 4873.295}, {"gradient": 0.789875377329557, "_id": "L3v09zmkwL", "elevation": -4856.856, "temperature": 96.44029783736039, "vertical_depth": 4881.856}, {"gradient": 0.8445356860923701, "_id": "B9rW2PkxDX", "elevation": -4865.418, "temperature": 96.44752875190471, "vertical_depth": 4890.418}, {"gradient": -4.024284580249091, "_id": "xloPMX3nbR", "elevation": -4873.979, "temperature": 96.4130768516132, "vertical_depth": 4898.979}, {"gradient": 2.9649075699988696, "_id": "kk7jrypMbd", "elevation": -4882.541, "temperature": 96.43846239022753, "vertical_depth": 4907.541}, {"gradient": 0.7289233930163029, "_id": "E7R0zEqJnz", "elevation": -4891.103, "temperature": 96.44470343231853, "vertical_depth": 4916.103}, {"gradient": 0.7040001623017188, "_id": "ZVQdKqxWxL", "elevation": -4899.664, "temperature": 96.450730377708, "vertical_depth": 4924.664}, {"gradient": 2.9580801772934358, "_id": "yaRzPpYNYy", "elevation": -4908.226, "temperature": 96.47605746018598, "vertical_depth": 4933.226}, {"gradient": 0.6788749865072929, "_id": "9ApZmeoKdj", "elevation": -4916.788, "temperature": 96.48186998782046, "vertical_depth": 4941.788}, {"gradient": 2.9522585062608138, "_id": "5pkgW5E7ak", "elevation": -4925.349, "temperature": 96.50714427289256, "vertical_depth": 4950.349}, {"gradient": 2.9464633214151377, "_id": "EbEmvkNP4l", "elevation": -4933.911, "temperature": 96.53237189185052, "vertical_depth": 4958.911}, {"gradient": 0.6537945870668238, "_id": "216OpqWBp2", "elevation": -4942.473, "temperature": 96.53796968110498, "vertical_depth": 4967.473}, {"gradient": 2.9421340967750313, "_id": "495RpLNPp2", "elevation": -4951.034, "temperature": 96.56315729110747, "vertical_depth": 4976.034}, {"gradient": 0.628676771743821, "_id": "mPXeLB5KgW", "elevation": -4959.596, "temperature": 96.56854002162714, "vertical_depth": 4984.596}, {"gradient": 0.6035215433199759, "_id": "m15dLVx3b0", "elevation": -4968.158, "temperature": 96.57370737308105, "vertical_depth": 4993.158}, {"gradient": 2.9383076789004257, "_id": "Lj2P06Bw0G", "elevation": -4976.719, "temperature": 96.59886222512011, "vertical_depth": 5001.719}, {"gradient": 2.931229131573002, "_id": "p0n1VpZ3xv", "elevation": -4985.281, "temperature": 96.62395940894464, "vertical_depth": 5010.281}, {"gradient": 0.5741203530819284, "_id": "9onPw6gym8", "elevation": -4993.843, "temperature": 96.62887502740773, "vertical_depth": 5018.843}, {"gradient": 2.8806898054145167, "_id": "3J91peEx48", "elevation": -5002.404, "temperature": 96.65353661283189, "vertical_depth": 5027.404}, {"gradient": 0.4921432459410374, "_id": "d04blMen3L", "elevation": -5010.966, "temperature": 96.65775034330363, "vertical_depth": 5035.966}, {"gradient": 0.46693398594222624, "_id": "rzXr7wvnev", "elevation": -5019.528, "temperature": 96.66174823209127, "vertical_depth": 5044.528}, {"gradient": 2.8809044820592575, "_id": "jvkjDE4grW", "elevation": -5028.089, "temperature": 96.68641165536218, "vertical_depth": 5053.089}, {"gradient": 0.4417005947569166, "_id": "jeonR21PvD", "elevation": -5036.651, "temperature": 96.69019349585449, "vertical_depth": 5061.651}, {"gradient": 2.880903786543082, "_id": "Gz9ny8Q7LL", "elevation": -5045.213, "temperature": 96.71485979407487, "vertical_depth": 5070.213}, {"gradient": 2.8828614815068563, "_id": "5NJevqmxbR", "elevation": -5053.774, "temperature": 96.73953997121805, "vertical_depth": 5078.774}, {"gradient": 0.4164293075075786, "_id": "lV4PRWkOMR", "elevation": -5062.336, "temperature": 96.74310543894893, "vertical_depth": 5087.336}, {"gradient": 0.39111720535569156, "_id": "a7Mkd3z16P", "elevation": -5070.898, "temperature": 96.74645418446119, "vertical_depth": 5095.898}, {"gradient": 2.8861213715159932, "_id": "mOzWMJKYZG", "elevation": -5079.459, "temperature": 96.77116226952273, "vertical_depth": 5104.459}, {"gradient": 2.890761168130494, "_id": "yjolD9Aj8e", "elevation": -5088.021, "temperature": 96.79591296664427, "vertical_depth": 5113.021}, {"gradient": 0.3657651119266767, "_id": "0zQReoq6rB", "elevation": -5096.583, "temperature": 96.79904464753258, "vertical_depth": 5121.583}, {"gradient": 0.34041197001943396, "_id": "JOVk4PZ917", "elevation": -5105.144, "temperature": 96.80195891440792, "vertical_depth": 5130.144}, {"gradient": 2.8976748002625423, "_id": "9j0y6e2GLn", "elevation": -5113.706, "temperature": 96.82676880604777, "vertical_depth": 5138.706}, {"gradient": 2.90678711503603, "_id": "eM1JGRbMwM", "elevation": -5122.268, "temperature": 96.8516567173267, "vertical_depth": 5147.268}, {"gradient": 0.3149741918543888, "_id": "r9Z5nEx9Pb", "elevation": -5130.829, "temperature": 96.85435321138317, "vertical_depth": 5155.829}, {"gradient": 2.9184141836889697, "_id": "qjXEAPnjxM", "elevation": -5139.391, "temperature": 96.87934067362391, "vertical_depth": 5164.391}, {"gradient": 0.2894930197114861, "_id": "nOAEBexOdv", "elevation": -5147.952, "temperature": 96.88181902336567, "vertical_depth": 5172.952}, {"gradient": -0.2549976444130149, "_id": "b5n1rVM5op", "elevation": -5156.514, "temperature": 96.8796357335342, "vertical_depth": 5181.514}, {"gradient": -0.2549976444130149, "_id": "1e2dN61e02", "elevation": -5165.076, "temperature": 96.87745244370274, "vertical_depth": 5190.076}, {"gradient": -0.25502743037779296, "_id": "VdvEY4pd0G", "elevation": -5173.637, "temperature": 96.87526915387127, "vertical_depth": 5198.637}, {"gradient": -0.2549976444130149, "_id": "vxEMqd7xeN", "elevation": -5182.199, "temperature": 96.87308586403981, "vertical_depth": 5207.199}, {"gradient": -0.25499764441298783, "_id": "nMEjK9dNBg", "elevation": -5190.761, "temperature": 96.87090257420834, "vertical_depth": 5215.761}, {"gradient": -0.21339205301927433, "_id": "ddyMo9PdRy", "elevation": -5199.322, "temperature": 96.86907572484245, "vertical_depth": 5224.322}, {"gradient": 2189.604082273548, "_id": "Bp6RMolpwq", "elevation": -5199.411, "temperature": 97.06395048816466, "vertical_depth": 5224.411}, {"gradient": 0.2124184344427233, "_id": "Nld34xNlQQ", "elevation": -5199.5, "temperature": 97.06396939340533, "vertical_depth": 5224.5}, {"gradient": 0.21275776801850674, "_id": "VXNk0Ao1JG", "elevation": -5207.184, "temperature": 97.06560422409478, "vertical_depth": 5232.184}, {"gradient": 0.7728098919766175, "_id": "lLZjm8boww", "elevation": -5214.869, "temperature": 97.07154326811462, "vertical_depth": 5239.869}, {"gradient": 1.161614428878907, "_id": "9JEjnzdJ1A", "elevation": -5222.553, "temperature": 97.08046911338613, "vertical_depth": 5247.553}, {"gradient": 1.2722376204410382, "_id": "kV03LenVbK", "elevation": -5230.237, "temperature": 97.0902449872616, "vertical_depth": 5255.237}, {"gradient": 859.4882920691193, "_id": "W85Qv1m8YR", "elevation": -5230.326, "temperature": 97.1667394452557, "vertical_depth": 5255.326}, {"gradient": -3.1778271492727783, "_id": "AZVwkalZqx", "elevation": -5230.415, "temperature": 97.16645661863942, "vertical_depth": 5255.415}, {"gradient": -3.1829097801215456, "_id": "Kq8RBabqoG", "elevation": -5238.284, "temperature": 97.14141030157964, "vertical_depth": 5263.284}, {"gradient": -3.182505344309537, "_id": "1PbL93ePQo", "elevation": -5246.154, "temperature": 97.11636398451992, "vertical_depth": 5271.154}, {"gradient": -3.1829097801215456, "_id": "8K167mGKJR", "elevation": -5254.023, "temperature": 97.09131766746015, "vertical_depth": 5279.023}, {"gradient": -3.1829097801287696, "_id": "LWX2jKvWpj", "elevation": -5261.892, "temperature": 97.06627135040031, "vertical_depth": 5286.892}, {"gradient": -3.182505344309905, "_id": "KDYnk7ODWK", "elevation": -5269.762, "temperature": 97.0412250333406, "vertical_depth": 5294.762}, {"gradient": -3.182909780121178, "_id": "8qo4BNEq8W", "elevation": -5277.631, "temperature": 97.01617871628082, "vertical_depth": 5302.631}, {"gradient": -3.1825053443171276, "_id": "nDKmv48DKL", "elevation": -5285.501, "temperature": 96.99113239922104, "vertical_depth": 5310.501}, {"gradient": -3.182909780114322, "_id": "rwLNK6xwZq", "elevation": -5293.37, "temperature": 96.96608608216133, "vertical_depth": 5318.37}, {"gradient": -3.1829097801215456, "_id": "xem5a0Ve7e", "elevation": -5301.239, "temperature": 96.94103976510155, "vertical_depth": 5326.239}, {"gradient": -3.1825053443239826, "_id": "E5LOjd95nK", "elevation": -5309.109, "temperature": 96.91599344804172, "vertical_depth": 5334.109}, {"gradient": -3.182909780114322, "_id": "YK2xoq6KKg", "elevation": -5316.978, "temperature": 96.890947130982, "vertical_depth": 5341.978}, {"gradient": -3.182909780114322, "_id": "G6Qdo9q6Ww", "elevation": -5324.847, "temperature": 96.86590081392228, "vertical_depth": 5349.847}, {"gradient": 1.8119800854663206, "_id": "DDg8VZnDOj", "elevation": -5332.717, "temperature": 96.8801610971949, "vertical_depth": 5357.717}, {"gradient": -2.5070299713576483, "_id": "ndQpkX8ddz", "elevation": -5340.586, "temperature": 96.86043327835029, "vertical_depth": 5365.586}]}], "well_strings": [{"elements": [], "od": 36, "type": "DRILLING", "_id": "v2Y6WzL67n", "hole_size": 42, "fluid_minimum_weight": 8.6, "toc_md": 2072, "interval": "CONDUCTOR", "shoe_md": 2168, "final_md": 2170, "load_scenarios": [], "annular_fluids": [], "pressure_relief": {}, "cementing": {"displacement_fluid_type": "OTHER", "first_slurry": {"thermomechanical_property": {"e": 1500000, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33}, "second_slurry": {}, "wh_pressure": 0, "_id": "8ODANyAYzW", "displacement_fluid": 8.55}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 1, "string_sections": [{"top_md": 2072, "extension": 96, "sequence": 1, "base_md": 2168, "pipe": {"kwall_burst": 0.875, "weight": 554, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "B", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 60000, "fymn": 35000, "an": 5, "version": 7, "hn": 0, "kydes": 0.85, "id": 12, "n": 0.141, "special_alloy": false, "nu": 0.31}, "statistical_properties": null, "od": 36, "instance": {"is_valid": true, "errors": [], "rel": {"od": 36, "id": 58, "weight": 554}}, "kwall_triaxial": 1, "version": 0, "hc": null, "wt": 1.5, "id": 58}, "connection": null, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": false}], "expected_wear": []}, {"elements": [], "od": 18, "type": "CASING", "_id": "KmQgWNwgEr", "hole_size": 20, "fluid_minimum_weight": 8.6, "toc_md": 2072, "interval": "SURFACE", "shoe_md": 3490, "final_md": 3500, "load_scenarios": [], "annular_fluids": [], "pressure_relief": {"safety_margin": 0, "can_calc_safety_margin": true, "safety_margin_unit": "LB_GAL", "relief_point": "PREVIOUS_SHOE", "depth": 2168, "can_calc_pressure_without_safety_margin": true, "active": false, "representation": {}, "_id": "154wpWDLa7", "pressure_without_safety_margin": {"msg": "PRESSURE_RELIEF_ERROR", "status": "fail"}}, "cementing": {"wh_pressure": 0, "first_slurry": {"thermomechanical_property": {"e": 1500000, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33}, "displacement_fluid_type": "OTHER", "second_slurry": {}, "displacement_fluid": 8.55}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 2, "string_sections": [{"top_md": 2072, "extension": 1418, "sequence": 1, "base_md": 3490, "pipe": {"kwall_burst": 0.875, "weight": 162, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "X-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 90000, "fymn": 80000, "an": 5, "version": 2, "hn": 0, "kydes": 0.855, "id": 6, "n": 0.104, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 18, "instance": {"is_valid": true, "errors": [], "rel": {"od": 18, "id": 9, "weight": 162}}, "kwall_triaxial": 1, "version": 1, "hc": null, "wt": 0.875, "id": 9}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 162, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "X-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0422, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "__AVERAGE__", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0361, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 8, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.09, "kt_mean": 0.9991, "id": 25}, "fumn": 90000, "fymn": 80000, "an": 5, "version": 2, "hn": 0, "kydes": 0.855, "id": 6, "n": 0.104, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 18, "instance": {"is_valid": true, "errors": [], "rel": {"od": 18, "id": 9, "weight": 162}}, "kwall_triaxial": 1, "version": 1, "hc": null, "wt": 0.875, "id": 9}, "name": "WEDGE 511", "kwall": 1, "tension_ratio": 65.6, "custom_envelope": {}, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "compression_ratio": 73.8, "id": 26}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": false}], "expected_wear": []}, {"elements": [], "od": 11.875, "type": "CASING", "_id": "AA1RJzv4Wj", "hole_size": 14.75, "fluid_minimum_weight": 8.6, "toc_md": 4905, "interval": "PRODUCTION", "shoe_md": 5607, "final_md": 5610, "load_scenarios": [], "annular_fluids": [{"solid_ratio": null, "is_custom": false, "weight": 8.6, "extension": 2833, "top": 2072, "corrected_solid_ratio": 0.29384715461743743, "fluid": "DFLT_FPBA_BARITE_8.60_35000", "salinity": 35000, "is_salinity_custom": true, "oil_water_ratio": null, "solid_density": 34, "fluid_type": "FPBA_BARITE", "base": 4905, "is_oil_water_ratio_custom": null, "is_solid_ratio_custom": null, "is_weight_custom": false}], "pressure_relief": {"safety_margin": 0, "can_calc_safety_margin": true, "safety_margin_unit": "LB_GAL", "relief_point": "PREVIOUS_SHOE", "depth": 3490, "can_calc_pressure_without_safety_margin": true, "active": false, "representation": {"index": 3, "_id": "qmBRGDB9Vv", "type": "ball"}, "_id": "nkq6LQqep6", "pressure_without_safety_margin": {"msg": "PRESSURE_RELIEF_ERROR", "status": "fail", "_id": "Prepwk6mOE"}}, "cementing": {"displacement_fluid_type": "CURRENT_PHASE_FLUID", "first_slurry": {"thermomechanical_property": {"e": 1500000, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33}, "second_slurry": {}, "wh_pressure": 0, "_id": "LeAMkvMG6e", "displacement_fluid": 8.6}, "hanger_md": 2072, "fluid_weight": 8.6, "sequence": 3, "string_sections": [{"top_md": 2072, "extension": 1000, "sequence": 1, "base_md": 3072, "pipe": {"kwall_burst": 0.875, "weight": 71.8, "grade": {"kedes": 0.825, "ka": 1, "name": "N-80", "thermal_derating": {"reference": "L-80", "celsius250": 0.89, "celsius150": 0.91, "version": 0, "celsius200": 0.88, "celsius25": 1, "id": 1, "celsius100": 0.95}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.3}, "statistical_properties": {"fy_cov": 0.0405, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "N80HRSAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.21, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0547, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.1581, "kt_mean": 0.9991, "id": 6}, "fumn": 100000, "fymn": 80000, "an": 5, "version": 1, "hn": 0, "kydes": 0.87, "n": 0.104, "special_alloy": false, "id": 17}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 2, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 11.875, "kwall_triaxial": 1, "wt": 0.582, "hc": 7810, "id": 98}, "connection": {"name": "VAM BOLT-NA", "kwall": 1, "tension_ratio": 60, "compression_ratio": 60, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "document": null, "id": 64}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}, {"top_md": 3072, "extension": 2369, "sequence": 2, "base_md": 5441, "pipe": {"kwall_burst": 0.875, "weight": 85.3, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "C-110 HC", "thermal_derating": {"reference": "__DEFAULT__", "celsius250": 0.8785, "celsius150": 0.9325, "version": 9, "celsius200": 0.9055, "celsius25": 1, "id": 12, "celsius100": 0.9595}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.036, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "P110HRSAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0509, "rs_cov": 0.507, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.113, "kt_mean": 0.9991, "id": 1}, "fumn": 120000, "fymn": 110000, "an": 5, "version": 2, "hn": 0, "kydes": 0.855, "id": 4, "n": 0.08, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 17, "weight": 85.3}}, "kwall_triaxial": 1, "version": 0, "hc": 14840, "wt": 0.797, "id": 17}, "connection": {"name": "VAM 21 HW-NA SC70", "kwall": 1, "tension_ratio": 70, "compression_ratio": 70, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 8, "has_custom_envelope": false, "document": null, "id": 113}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}, {"top_md": 5441, "extension": 166, "sequence": 3, "base_md": 5607, "pipe": {"kwall_burst": 0.875, "weight": 109, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 5, "weight": 109}}, "kwall_triaxial": 1, "version": 0, "hc": null, "wt": 1.033, "id": 5}, "connection": {"pipe": {"kwall_burst": 0.875, "weight": 109, "grade": {"kedes": 0.825, "ka": 1, "e": 30000000, "name": "SDSS/125KSI", "thermal_derating": {"reference": "SDSS/125", "celsius250": 0.84, "celsius150": 0.89, "version": 0, "celsius200": 0.86, "celsius25": 1, "id": 11, "celsius100": 0.94}, "thermomechanical_property": {"e": 30000000, "reference": "__DEFAULT__", "thermal_conductivity": 45.345257, "density": 65.5035, "specific_heat": 460.9, "id": 1, "version": 17, "thermal_expansion_coefficient": 1.2e-05, "type": "STEEL", "nu": 0.31}, "statistical_properties": {"fy_cov": 0.0329, "kt_cov": 0.067, "ks_cov": 0.019, "reference": "SDSS/125KsiAPI+Blade", "rs_distribution": "normal", "fy_mean": 1.1, "rs_mean": -0.138, "fy_distribution": "normal", "fu_cov": 0.0089, "rs_cov": null, "fu_distribution": "normal", "ks_mean": 1.05, "version": 0, "kt_distribution": "normal", "ks_distribution": "normal", "fu_mean": 1.0744, "kt_mean": 0.9991, "id": 23}, "fumn": 130000, "fymn": 125000, "an": 5, "version": 1, "hn": 0, "kydes": 0.85, "id": 42, "n": 0.068, "special_alloy": false, "nu": 0.31}, "statistical_properties": {"ec_distribution": "weibull_2p", "ec_mean": 3.924, "reference": "API TR 5C3:2008", "wtmn_mean": 0.973, "ov_cov": 0.541, "wtmn_cov": 0.0157, "id": 1, "od_mean": 1.0059, "version": 0, "wtmn_distribution": "normal", "od_distribution": "normal", "od_cov": 0.00181, "wt_mean": 1.0069, "ov_mean": 0.217, "ec_cov": 0.661, "wt_distribution": "normal", "wt_cov": 0.0259, "ov_distribution": "weibull_2p"}, "od": 10.75, "instance": {"is_valid": true, "errors": [], "rel": {"od": 10.75, "id": 5, "weight": 109}}, "kwall_triaxial": 1, "version": 0, "hc": null, "wt": 1.033, "id": 5}, "name": "VAM MUST", "kwall": 1, "tension_ratio": 56, "custom_envelope": {}, "internal_pressure_ratio": 100, "external_pressure_ratio": 100, "version": 0, "has_custom_envelope": false, "compression_ratio": 45, "id": 1}, "meta": {"fields": {"enable_corrosive_wear": {"user_entered": false}}}, "enable_corrosive_wear": true}], "expected_wear": []}, {"elements": [], "sequence": 4, "hole_size": 9.5, "fluid_minimum_weight": 8.6, "fluid_weight": 8.6, "string_sections": [], "final_md": 5978, "interval": "OPEN", "load_scenarios": [], "annular_fluids": [], "pressure_relief": {}, "cementing": {"wh_pressure": 0, "first_slurry": {"thermomechanical_property": {"e": 1500000, "reference": "__DEFAULT__", "thermal_conductivity": 0.983057, "density": 15.7743, "specific_heat": 837.9, "id": 3, "version": 12, "thermal_expansion_coefficient": 1e-06, "type": "CEMENT", "nu": 0.28}, "slurry_density": 15.8, "mixing_water": 8.33}, "displacement_fluid_type": "CURRENT_PHASE_FLUID", "second_slurry": {}, "displacement_fluid": 8.6}, "_id": "9OgJxMzrzB", "expected_wear": []}]}, "active": true, "_id": "Daq40oro2q", "data": {"fluid_type": "DFLT_BLACK_OIL_27.40_230.00_1.17", "duration": 60, "fluid_gradient": 0.4096912695279056, "oil_flow_rate": 1500, "oil_degree_api": 27.4, "method_data": {"well_head_pressure": 4978.17, "well_head_temperature": 60, "valve_depth": 3000, "fluid_type": "Methane", "well_head_flow": 350000, "_id": "LYyEyK1KzZ"}, "gradient_method": "N2752_GAS", "method": "GASLIFT", "gor": 230, "gas_data_type": null, "fluid": "OIL", "flow_initial_temperature": 97, "flow_rate": 9000, "flow_initial_pressure": 9814.11, "perforation_pressure": 9814.11, "gas_data": null, "perforation_temperature": 97, "perforation_temperature_is_custom": true, "water_flow_rate": 7500, "perforation_base_depth": 5978, "glr": 38.333333333333336, "_id": "o7y3pmxo9X"}}, "_id": "6wRyzgypWm", "water_depth": 2047, "air_gap": 25, "temperature": {"show_all_list_thermal_profiles": true, "ground_thermal_profiles": [{"name": "Geot\u00e9rmico (default)", "is_default": true, "source": "TEMPERATURE", "active": true, "_id": "OJ2jk8P78o", "data": [{"gradient": -10.86, "_id": "PkMQyYl88l", "elevation": -2047, "temperature": 4.44}, {"gradient": 27.74, "_id": "9vOk8ZrGzk", "elevation": -5710, "temperature": 106.04}]}, {"is_default": false, "name": "COP/COI (Prod Surg PO)", "calculated_from": "7qWOQo3oG4-5", "source": "GRADIENT", "_id": "4N2k8v72P2", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 92.6282624206757, "vertical_depth": 2072.0}, {"gradient": -9.692741585137297, "elevation": -2067.05, "temperature": 92.43392295189369, "vertical_depth": 2092.05}, {"gradient": -9.570069557215637, "elevation": -2087.08, "temperature": 92.24223445866267, "vertical_depth": 2112.08}, {"gradient": -82.29577935374645, "elevation": -2087.18, "temperature": 92.2340048807273, "vertical_depth": 2112.18}, {"gradient": -0.7477663825711797, "elevation": -2087.28, "temperature": 92.23393010408904, "vertical_depth": 2112.28}, {"gradient": -3.1127999530809363, "elevation": -2115.037, "temperature": 92.14752811579137, "vertical_depth": 2140.037}, {"gradient": -3.0229295242129717, "elevation": -2142.794, "temperature": 92.0636206609878, "vertical_depth": 2167.794}, {"gradient": -4061.0904283587947, "elevation": -2142.894, "temperature": 91.65751161815228, "vertical_depth": 2167.894}, {"gradient": -1857.602471492391, "elevation": -2142.994, "temperature": 91.47175137100237, "vertical_depth": 2167.994}, {"gradient": 4.1612432654164575, "elevation": -2227.491, "temperature": 91.82336394320026, "vertical_depth": 2252.491}, {"gradient": 3.962610455619216, "elevation": -2311.989, "temperature": 92.15819660147918, "vertical_depth": 2336.989}, {"gradient": 4.197830926339237, "elevation": -2396.487, "temperature": 92.51290491909299, "vertical_depth": 2421.487}, {"gradient": 4.394256637001952, "elevation": -2480.985, "temperature": 92.88421081640638, "vertical_depth": 2505.985}, {"gradient": 4.021560636354176, "elevation": -2565.483, "temperature": 93.22402464705704, "vertical_depth": 2590.483}, {"gradient": 3.8220261530158743, "elevation": -2649.98, "temperature": 93.54697439090842, "vertical_depth": 2674.98}, {"gradient": 3.7419329989559373, "elevation": -2734.478, "temperature": 93.8631602454542, "vertical_depth": 2759.478}, {"gradient": 3.534685010205081, "elevation": -2818.976, "temperature": 94.1618340594465, "vertical_depth": 2843.976}, {"gradient": 191.39654934253159, "elevation": -2819.076, "temperature": 94.18097371438074, "vertical_depth": 2844.076}, {"gradient": -1.3125085610011524, "elevation": -2819.176, "temperature": 94.18084246352464, "vertical_depth": 2844.176}, {"gradient": -0.8288756595191941, "elevation": -2847.237, "temperature": 94.15758338364287, "vertical_depth": 2872.237}, {"gradient": -0.5413764848040914, "elevation": -2875.299, "temperature": 94.1423912767263, "vertical_depth": 2900.299}, {"gradient": -184.37689432135755, "elevation": -2875.399, "temperature": 94.12395358729418, "vertical_depth": 2900.399}, {"gradient": -0.5571746086003216, "elevation": -2875.498, "temperature": 94.12389842700793, "vertical_depth": 2900.498}, {"gradient": 3.4571499940563677, "elevation": -2899.815, "temperature": 94.2079659434134, "vertical_depth": 2924.815}, {"gradient": 3.2534446874125935, "elevation": -2924.132, "temperature": 94.28707995787721, "vertical_depth": 2949.132}, {"gradient": 184.72265673170543, "elevation": -2924.232, "temperature": 94.30555222355036, "vertical_depth": 2949.232}, {"gradient": 3.238919423479044, "elevation": -2924.331, "temperature": 94.30587287657329, "vertical_depth": 2949.331}, {"gradient": -1.1780172596751617, "elevation": -2951.644, "temperature": 94.27369769115978, "vertical_depth": 2976.644}, {"gradient": -0.8874373530120495, "elevation": -2978.956, "temperature": 94.24946000217432, "vertical_depth": 3003.956}, {"gradient": -195.87198981202698, "elevation": -2979.056, "temperature": 94.22987280319313, "vertical_depth": 3004.056}, {"gradient": -0.9284151019536951, "elevation": -2979.156, "temperature": 94.22977996168294, "vertical_depth": 3004.156}, {"gradient": 3.232224579341389, "elevation": -3012.356, "temperature": 94.33708981771707, "vertical_depth": 3037.356}, {"gradient": 3.02703291614768, "elevation": -3045.555, "temperature": 94.43758428350026, "vertical_depth": 3070.555}, {"gradient": 29.285610776703706, "elevation": -3045.655, "temperature": 94.44051284457794, "vertical_depth": 3070.655}, {"gradient": 59.6077793955461, "elevation": -3045.755, "temperature": 94.44647362251749, "vertical_depth": 3070.755}, {"gradient": 3.0240178642803044, "elevation": -3115.293, "temperature": 94.65675777676381, "vertical_depth": 3140.293}, {"gradient": 2.8193862191414802, "elevation": -3184.831, "temperature": 94.85281225567047, "vertical_depth": 3209.831}, {"gradient": 2.4857293445119018, "elevation": -3254.368, "temperature": 95.0256624170998, "vertical_depth": 3279.368}, {"gradient": 2.6927930294058626, "elevation": -3323.906, "temperature": 95.21291385877862, "vertical_depth": 3348.906}, {"gradient": 2.4593211376353934, "elevation": -3393.444, "temperature": 95.38393013204751, "vertical_depth": 3418.444}, {"gradient": 2.250703173787886, "elevation": -3462.982, "temperature": 95.54043952934637, "vertical_depth": 3487.982}, {"gradient": -708.064780618618, "elevation": -3463.082, "temperature": 95.46963305128457, "vertical_depth": 3488.082}, {"gradient": -1502.5374629524345, "elevation": -3463.182, "temperature": 95.31937930498947, "vertical_depth": 3488.182}, {"gradient": 3.2364518756374125, "elevation": -3551.476, "temperature": 95.605138586897, "vertical_depth": 3576.476}, {"gradient": 3.5393194712856295, "elevation": -3639.231, "temperature": 95.91573156709967, "vertical_depth": 3664.231}, {"gradient": 3.1039643506615624, "elevation": -3725.441, "temperature": 96.1833243337702, "vertical_depth": 3750.441}, {"gradient": 2.905308684703345, "elevation": -3809.194, "temperature": 96.42665265204016, "vertical_depth": 3834.194}, {"gradient": 2.7746704414767502, "elevation": -3889.603, "temperature": 96.64976112756887, "vertical_depth": 3914.603}, {"gradient": 2.5478805834329528, "elevation": -3968.179, "temperature": 96.8499633922927, "vertical_depth": 3993.179}, {"gradient": 2.1382370848917174, "elevation": -4046.755, "temperature": 97.01797750947514, "vertical_depth": 4071.755}, {"gradient": 2.4293897567293405, "elevation": -4125.331, "temperature": 97.20886923899991, "vertical_depth": 4150.331}, {"gradient": 2.0666899314308793, "elevation": -4203.907, "temperature": 97.37126146705202, "vertical_depth": 4228.907}, {"gradient": 1.7730919577131348, "elevation": -4282.483, "temperature": 97.51058394072129, "vertical_depth": 4307.483}, {"gradient": 1.3986551934625475, "elevation": -4361.059, "temperature": 97.6204846712028, "vertical_depth": 4386.059}, {"gradient": 1.694434575285327, "elevation": -4439.635, "temperature": 97.75362656239042, "vertical_depth": 4464.635}, {"gradient": 0.9039553703362522, "elevation": -4518.211, "temperature": 97.82465575956996, "vertical_depth": 4543.211}, {"gradient": 1.202759898681781, "elevation": -4596.787, "temperature": 97.91916382136878, "vertical_depth": 4621.787}, {"gradient": 0.5381642945367127, "elevation": -4675.363, "temperature": 97.9614506189763, "vertical_depth": 4700.363}, {"gradient": 0.8377647697600509, "elevation": -4753.939, "temperature": 98.02727882352497, "vertical_depth": 4778.939}, {"gradient": 520.8787273944765, "elevation": -4754.027, "temperature": 98.07311615153554, "vertical_depth": 4779.027}, {"gradient": 1050.1182177547225, "elevation": -4754.116, "temperature": 98.16657667291565, "vertical_depth": 4779.116}, {"gradient": -0.5708881478889323, "elevation": -4828.317, "temperature": 98.12421620145415, "vertical_depth": 4853.317}, {"gradient": -0.7217938110977081, "elevation": -4902.518, "temperature": 98.07065837887689, "vertical_depth": 4927.518}, {"gradient": -0.8864024996076468, "elevation": -4976.719, "temperature": 98.0048864270035, "vertical_depth": 5001.719}, {"gradient": -0.7411448194880607, "elevation": -5050.92, "temperature": 97.94989274025266, "vertical_depth": 5075.92}, {"gradient": -0.9384413723325656, "elevation": -5125.121, "temperature": 97.88025945198422, "vertical_depth": 5150.121}, {"gradient": -1.0833540450111692, "elevation": -5199.322, "temperature": 97.79987349849034, "vertical_depth": 5224.322}, {"gradient": 11.09935994931987, "elevation": -5199.411, "temperature": 97.80086134152583, "vertical_depth": 5224.411}, {"gradient": -1.369809747380036, "elevation": -5199.5, "temperature": 97.80073942845831, "vertical_depth": 5224.5}, {"gradient": -5.8361689843337405, "elevation": -5214.869, "temperature": 97.71104334733809, "vertical_depth": 5239.869}, {"gradient": -6.0396264315435, "elevation": -5230.237, "temperature": 97.61822636833813, "vertical_depth": 5255.237}, {"gradient": -5.524419730446471, "elevation": -5230.326, "temperature": 97.61773469498212, "vertical_depth": 5255.326}, {"gradient": -4.56590823261764, "elevation": -5230.415, "temperature": 97.61732832914942, "vertical_depth": 5255.415}, {"gradient": -6.116666759367821, "elevation": -5285.501, "temperature": 97.28038562404288, "vertical_depth": 5310.501}, {"gradient": -5.917773261382833, "elevation": -5340.586, "temperature": 96.9544050839396, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "COP/COI (Prod Surg PA)", "calculated_from": "NPMo3LQLxK-5", "source": "GRADIENT", "_id": "EjDnE2kq5z", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 84.83395998710398, "vertical_depth": 2072.0}, {"gradient": 0.6111950055799837, "elevation": -2067.05, "temperature": 84.84621444696586, "vertical_depth": 2092.05}, {"gradient": 0.7075586663493438, "elevation": -2087.08, "temperature": 84.86038684705284, "vertical_depth": 2112.08}, {"gradient": -201.38174289190954, "elevation": -2087.18, "temperature": 84.84024867276366, "vertical_depth": 2112.18}, {"gradient": 8.414607574392305, "elevation": -2087.28, "temperature": 84.8410901335211, "vertical_depth": 2112.28}, {"gradient": 2.739641934972769, "elevation": -2115.037, "temperature": 84.91713437471014, "vertical_depth": 2140.037}, {"gradient": 2.8123208999892206, "elevation": -2142.794, "temperature": 84.99519596593115, "vertical_depth": 2167.794}, {"gradient": -4414.3061825218765, "elevation": -2142.894, "temperature": 84.55376534767936, "vertical_depth": 2167.894}, {"gradient": -2413.2749158795573, "elevation": -2142.994, "temperature": 84.31243785609053, "vertical_depth": 2167.994}, {"gradient": 7.171949355058954, "elevation": -2227.491, "temperature": 84.91844606074494, "vertical_depth": 2252.491}, {"gradient": 7.000440676453061, "elevation": -2311.989, "temperature": 85.50996929702387, "vertical_depth": 2336.989}, {"gradient": 6.519398534439246, "elevation": -2396.487, "temperature": 86.06084543438692, "vertical_depth": 2421.487}, {"gradient": 6.694901567647698, "elevation": -2480.985, "temperature": 86.62655122705002, "vertical_depth": 2505.985}, {"gradient": 6.423827586142066, "elevation": -2565.483, "temperature": 87.16935181042385, "vertical_depth": 2590.483}, {"gradient": 6.246042617011321, "elevation": -2649.98, "temperature": 87.69712367343345, "vertical_depth": 2674.98}, {"gradient": 6.043021103356541, "elevation": -2734.478, "temperature": 88.20774687062487, "vertical_depth": 2759.478}, {"gradient": 5.86209167354883, "elevation": -2818.976, "temperature": 88.7030818928564, "vertical_depth": 2843.976}, {"gradient": 491.94640821428214, "elevation": -2819.076, "temperature": 88.75227653367779, "vertical_depth": 2844.076}, {"gradient": 1.5971463130896129, "elevation": -2819.176, "temperature": 88.7524362483091, "vertical_depth": 2844.176}, {"gradient": 3.2816143341412083, "elevation": -2847.237, "temperature": 88.84452162813943, "vertical_depth": 2872.237}, {"gradient": 3.5262145063837873, "elevation": -2875.299, "temperature": 88.94347425961757, "vertical_depth": 2900.299}, {"gradient": -472.009683219173, "elevation": -2875.399, "temperature": 88.8962732912957, "vertical_depth": 2900.399}, {"gradient": 3.556077071160716, "elevation": -2875.498, "temperature": 88.89662534292574, "vertical_depth": 2900.498}, {"gradient": 5.60031926993075, "elevation": -2899.815, "temperature": 89.03280830661265, "vertical_depth": 2924.815}, {"gradient": 5.415559196195019, "elevation": -2924.132, "temperature": 89.16449845958653, "vertical_depth": 2949.132}, {"gradient": 473.3028432825434, "elevation": -2924.232, "temperature": 89.21182874391474, "vertical_depth": 2949.232}, {"gradient": 5.419022744654066, "elevation": -2924.331, "temperature": 89.21236522716646, "vertical_depth": 2949.331}, {"gradient": 3.1065604468108647, "elevation": -2951.644, "temperature": 89.2972147126502, "vertical_depth": 2976.644}, {"gradient": 3.353013302669529, "elevation": -2978.956, "temperature": 89.38879221197271, "vertical_depth": 3003.956}, {"gradient": -457.42992996266133, "elevation": -2979.056, "temperature": 89.34304921897649, "vertical_depth": 3004.056}, {"gradient": 3.348249650233218, "elevation": -2979.156, "temperature": 89.34338404394151, "vertical_depth": 3004.156}, {"gradient": 5.399666384586277, "elevation": -3012.356, "temperature": 89.52265296790978, "vertical_depth": 3037.356}, {"gradient": 5.2136068504417485, "elevation": -3045.555, "temperature": 89.69573950173759, "vertical_depth": 3070.555}, {"gradient": 39.78499354545043, "elevation": -3045.655, "temperature": 89.69971800109215, "vertical_depth": 3070.655}, {"gradient": 68.01981649863868, "elevation": -3045.755, "temperature": 89.70651998274201, "vertical_depth": 3070.755}, {"gradient": 5.129076844702358, "elevation": -3115.293, "temperature": 90.06318572836892, "vertical_depth": 3140.293}, {"gradient": 4.942819397953246, "elevation": -3184.831, "temperature": 90.4068995036638, "vertical_depth": 3209.831}, {"gradient": 4.642482828889766, "elevation": -3254.368, "temperature": 90.7297238321363, "vertical_depth": 3279.368}, {"gradient": 4.830877488689867, "elevation": -3323.906, "temperature": 91.06565339094482, "vertical_depth": 3348.906}, {"gradient": 4.448898273760734, "elevation": -3393.444, "temperature": 91.37502087910559, "vertical_depth": 3418.444}, {"gradient": 4.257549021948003, "elevation": -3462.982, "temperature": 91.67108232299381, "vertical_depth": 3487.982}, {"gradient": -904.2588171800201, "elevation": -3463.082, "temperature": 91.58065644127589, "vertical_depth": 3488.082}, {"gradient": -1630.7989128737343, "elevation": -3463.182, "temperature": 91.41757654998867, "vertical_depth": 3488.182}, {"gradient": 5.520044009023336, "elevation": -3551.476, "temperature": 91.90496331572137, "vertical_depth": 3576.476}, {"gradient": 5.808867517242601, "elevation": -3639.231, "temperature": 92.414720484697, "vertical_depth": 3664.231}, {"gradient": 5.361336661019511, "elevation": -3725.441, "temperature": 92.87692131824349, "vertical_depth": 3750.441}, {"gradient": 5.257225168436919, "elevation": -3809.194, "temperature": 93.31722969777559, "vertical_depth": 3834.194}, {"gradient": 5.10745212348846, "elevation": -3889.603, "temperature": 93.72791481557317, "vertical_depth": 3914.603}, {"gradient": 4.96386110780562, "elevation": -3968.179, "temperature": 94.1179551659801, "vertical_depth": 3993.179}, {"gradient": 4.419973040178309, "elevation": -4046.755, "temperature": 94.46525896758516, "vertical_depth": 4071.755}, {"gradient": 4.6841532253576785, "elevation": -4125.331, "temperature": 94.83332099142086, "vertical_depth": 4150.331}, {"gradient": 4.1870156890077235, "elevation": -4203.907, "temperature": 95.16231993620033, "vertical_depth": 4228.907}, {"gradient": 3.918591792948423, "elevation": -4282.483, "temperature": 95.47022720492305, "vertical_depth": 4307.483}, {"gradient": 3.454518448515367, "elevation": -4361.059, "temperature": 95.74166944653359, "vertical_depth": 4386.059}, {"gradient": 3.7263568993067993, "elevation": -4439.635, "temperature": 96.03447166625352, "vertical_depth": 4464.635}, {"gradient": 2.8721602060164013, "elevation": -4518.211, "temperature": 96.26015452660147, "vertical_depth": 4543.211}, {"gradient": 3.148132231879602, "elevation": -4596.787, "temperature": 96.50752216485364, "vertical_depth": 4621.787}, {"gradient": 2.3215079727811796, "elevation": -4675.363, "temperature": 96.6899369753229, "vertical_depth": 4700.363}, {"gradient": 2.6006379386777003, "elevation": -4753.939, "temperature": 96.89428470199243, "vertical_depth": 4778.939}, {"gradient": 656.5273711422975, "elevation": -4754.027, "temperature": 96.95205911065278, "vertical_depth": 4779.027}, {"gradient": 1147.4949742236618, "elevation": -4754.116, "temperature": 97.05418616335862, "vertical_depth": 4779.116}, {"gradient": 0.8890598633555924, "elevation": -4828.317, "temperature": 97.12015529427947, "vertical_depth": 4853.317}, {"gradient": 0.7461485512492712, "elevation": -4902.518, "temperature": 97.17552026293072, "vertical_depth": 4927.518}, {"gradient": 0.48507150577535674, "elevation": -4976.719, "temperature": 97.21151305373076, "vertical_depth": 5001.719}, {"gradient": 0.6232190068171501, "elevation": -5050.92, "temperature": 97.2577565272556, "vertical_depth": 5075.92}, {"gradient": 0.36589923254540563, "elevation": -5125.121, "temperature": 97.2849066162097, "vertical_depth": 5150.121}, {"gradient": 0.22778241033902555, "elevation": -5199.322, "temperature": 97.30180829883926, "vertical_depth": 5224.322}, {"gradient": 30.905125825458217, "elevation": -5199.411, "temperature": 97.30455885503773, "vertical_depth": 5224.411}, {"gradient": -0.02422589741299255, "elevation": -5199.5, "temperature": 97.30455669893286, "vertical_depth": 5224.5}, {"gradient": -2.1681160312341454, "elevation": -5214.869, "temperature": 97.27123492364882, "vertical_depth": 5239.869}, {"gradient": -2.3488128568852593, "elevation": -5230.237, "temperature": 97.2351383676642, "vertical_depth": 5255.237}, {"gradient": -1.724785446452529, "elevation": -5230.326, "temperature": 97.23498486175947, "vertical_depth": 5255.326}, {"gradient": -0.8448661296166154, "elevation": -5230.415, "temperature": 97.23490966867394, "vertical_depth": 5255.415}, {"gradient": -2.4622327482658557, "elevation": -5285.501, "temperature": 97.09927511550296, "vertical_depth": 5310.501}, {"gradient": -2.2849710736204263, "elevation": -5340.586, "temperature": 96.97340748391258, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "COP/COI (Prod GL PA)", "calculated_from": "Daq40oro2q-5", "source": "GRADIENT", "_id": "4wJoVX5gYp", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 81.2483036286734, "vertical_depth": 2072.0}, {"gradient": 45.14198319468935, "elevation": -2053.685, "temperature": 81.5500777863299, "vertical_depth": 2078.685}, {"gradient": 78.97468352413368, "elevation": -2060.369, "temperature": 82.07794457100522, "vertical_depth": 2085.369}, {"gradient": 62.45155265870347, "elevation": -2067.05, "temperature": 82.49518339431802, "vertical_depth": 2092.05}, {"gradient": 35.818847584381665, "elevation": -2073.729, "temperature": 82.73441747733409, "vertical_depth": 2098.729}, {"gradient": 49.38843829745219, "elevation": -2080.405, "temperature": 83.0641346914079, "vertical_depth": 2105.405}, {"gradient": 28.44387525447271, "elevation": -2087.08, "temperature": 83.2539975587315, "vertical_depth": 2112.08}, {"gradient": -6975.343667014705, "elevation": -2087.18, "temperature": 82.55646319203066, "vertical_depth": 2112.18}, {"gradient": 91.34261999373359, "elevation": -2087.28, "temperature": 82.56559745403007, "vertical_depth": 2112.28}, {"gradient": 40.7768044857013, "elevation": -2096.532, "temperature": 82.94286444913178, "vertical_depth": 2121.532}, {"gradient": 64.08009870762325, "elevation": -2105.785, "temperature": 83.5357976024734, "vertical_depth": 2130.785}, {"gradient": 41.92521966319565, "elevation": -2115.037, "temperature": 83.92368973479728, "vertical_depth": 2140.037}, {"gradient": 27.09716775325446, "elevation": -2124.289, "temperature": 84.1743927308504, "vertical_depth": 2149.289}, {"gradient": 18.384659067296226, "elevation": -2133.542, "temperature": 84.34450598120009, "vertical_depth": 2158.542}, {"gradient": 27.798411235255532, "elevation": -2142.794, "temperature": 84.60169688194867, "vertical_depth": 2167.794}, {"gradient": 6.144342726207601, "elevation": -2142.894, "temperature": 84.60231131622129, "vertical_depth": 2167.894}, {"gradient": 6.245954486962561, "elevation": -2142.994, "temperature": 84.60293591166999, "vertical_depth": 2167.994}, {"gradient": 3.8661924484608043, "elevation": -2152.935, "temperature": 84.64136973080014, "vertical_depth": 2177.935}, {"gradient": 5.039679912624603, "elevation": -2162.876, "temperature": 84.69146918881154, "vertical_depth": 2187.876}, {"gradient": 5.8504909546774835, "elevation": -2172.816, "temperature": 84.74962306890103, "vertical_depth": 2197.816}, {"gradient": 5.260753395787406, "elevation": -2182.757, "temperature": 84.80192021840855, "vertical_depth": 2207.757}, {"gradient": 6.060046200683654, "elevation": -2192.698, "temperature": 84.86216313768955, "vertical_depth": 2217.698}, {"gradient": 6.3238065862575334, "elevation": -2202.639, "temperature": 84.92502809896354, "vertical_depth": 2227.639}, {"gradient": 6.5794553054186595, "elevation": -2212.58, "temperature": 84.9904344641547, "vertical_depth": 2237.58}, {"gradient": 6.499178206270594, "elevation": -2222.521, "temperature": 85.05504279470324, "vertical_depth": 2247.521}, {"gradient": 6.734843348527269, "elevation": -2232.462, "temperature": 85.12199387243095, "vertical_depth": 2257.462}, {"gradient": 6.711565404518244, "elevation": -2242.403, "temperature": 85.18871354411726, "vertical_depth": 2267.403}, {"gradient": 6.728879965877209, "elevation": -2252.344, "temperature": 85.25560533985805, "vertical_depth": 2277.344}, {"gradient": 6.633986396773278, "elevation": -2262.285, "temperature": 85.32155379862837, "vertical_depth": 2287.285}, {"gradient": 6.637340116063337, "elevation": -2272.226, "temperature": 85.38753559672216, "vertical_depth": 2297.226}, {"gradient": 6.760977976317213, "elevation": -2282.167, "temperature": 85.45474647878473, "vertical_depth": 2307.167}, {"gradient": 6.7728621731943965, "elevation": -2292.107, "temperature": 85.52206872878628, "vertical_depth": 2317.107}, {"gradient": 6.633061454516479, "elevation": -2302.048, "temperature": 85.58800799270563, "vertical_depth": 2327.048}, {"gradient": 6.618496904181154, "elevation": -2311.989, "temperature": 85.6538024704301, "vertical_depth": 2336.989}, {"gradient": 6.766471571308325, "elevation": -2321.93, "temperature": 85.72106796432047, "vertical_depth": 2346.93}, {"gradient": 6.751150786478192, "elevation": -2331.871, "temperature": 85.78818115428885, "vertical_depth": 2356.871}, {"gradient": 6.598074841489645, "elevation": -2341.812, "temperature": 85.8537726162881, "vertical_depth": 2366.812}, {"gradient": 6.574294181374331, "elevation": -2351.753, "temperature": 85.91912767474514, "vertical_depth": 2376.753}, {"gradient": 6.73033184625548, "elevation": -2361.694, "temperature": 85.98603390362877, "vertical_depth": 2386.694}, {"gradient": 6.706530139671343, "elevation": -2371.635, "temperature": 86.05270351974724, "vertical_depth": 2396.635}, {"gradient": 6.548743824077609, "elevation": -2381.576, "temperature": 86.1178045821024, "vertical_depth": 2406.576}, {"gradient": 6.522247421445992, "elevation": -2391.517, "temperature": 86.18264224371899, "vertical_depth": 2416.517}, {"gradient": 6.681777675364285, "elevation": -2401.457, "temperature": 86.24905911381211, "vertical_depth": 2426.457}, {"gradient": 6.494801123445733, "elevation": -2411.398, "temperature": 86.31362393178028, "vertical_depth": 2436.398}, {"gradient": 6.654383369336945, "elevation": -2421.339, "temperature": 86.37977515685486, "vertical_depth": 2446.339}, {"gradient": 6.627033944324532, "elevation": -2431.28, "temperature": 86.4456545012954, "vertical_depth": 2456.28}, {"gradient": 6.46694789371442, "elevation": -2441.221, "temperature": 86.50994243030681, "vertical_depth": 2466.221}, {"gradient": 6.4388349855022575, "elevation": -2451.162, "temperature": 86.57395088889768, "vertical_depth": 2476.162}, {"gradient": 6.59929987826918, "elevation": -2461.103, "temperature": 86.63955452898756, "vertical_depth": 2486.103}, {"gradient": 6.571319449451682, "elevation": -2471.044, "temperature": 86.70488001563456, "vertical_depth": 2496.044}, {"gradient": 6.410546316277913, "elevation": -2480.985, "temperature": 86.76860725656468, "vertical_depth": 2505.985}, {"gradient": 6.383528317748953, "elevation": -2490.926, "temperature": 86.83206591157142, "vertical_depth": 2515.926}, {"gradient": 6.545826643997409, "elevation": -2500.867, "temperature": 86.8971379742394, "vertical_depth": 2525.867}, {"gradient": 6.516895053634559, "elevation": -2510.808, "temperature": 86.96192242796758, "vertical_depth": 2535.808}, {"gradient": 6.355164248247281, "elevation": -2520.748, "temperature": 87.02509276059516, "vertical_depth": 2545.748}, {"gradient": 6.487296005531324, "elevation": -2530.689, "temperature": 87.08958297018614, "vertical_depth": 2555.689}, {"gradient": 6.3251771999365305, "elevation": -2540.63, "temperature": 87.15246155673071, "vertical_depth": 2565.63}, {"gradient": 6.296095260835036, "elevation": -2550.571, "temperature": 87.21505103971867, "vertical_depth": 2575.571}, {"gradient": 6.458182545120975, "elevation": -2560.512, "temperature": 87.27925183239972, "vertical_depth": 2585.512}, {"gradient": 6.429328871200557, "elevation": -2570.453, "temperature": 87.34316579070833, "vertical_depth": 2595.453}, {"gradient": 6.26713923275935, "elevation": -2580.394, "temperature": 87.40546742182119, "vertical_depth": 2605.394}, {"gradient": 6.238163338500308, "elevation": -2590.335, "temperature": 87.46748100356922, "vertical_depth": 2615.335}, {"gradient": 6.400476834337142, "elevation": -2600.276, "temperature": 87.53110814377936, "vertical_depth": 2625.276}, {"gradient": 6.2091927999140015, "elevation": -2610.217, "temperature": 87.59283372940331, "vertical_depth": 2635.217}, {"gradient": 6.3716797220255055, "elevation": -2620.158, "temperature": 87.65617459751996, "vertical_depth": 2645.158}, {"gradient": 6.342873592818333, "elevation": -2630.099, "temperature": 87.71922910390617, "vertical_depth": 2655.099}, {"gradient": 6.18081114748584, "elevation": -2640.039, "temperature": 87.78066636671218, "vertical_depth": 2665.039}, {"gradient": 6.151194273869781, "elevation": -2649.98, "temperature": 87.84181538898872, "vertical_depth": 2674.98}, {"gradient": 6.314139774781882, "elevation": -2659.921, "temperature": 87.90458425248983, "vertical_depth": 2684.921}, {"gradient": 6.121502200988097, "elevation": -2669.862, "temperature": 87.96543810586985, "vertical_depth": 2694.862}, {"gradient": 6.284791803590872, "elevation": -2679.803, "temperature": 88.02791522118935, "vertical_depth": 2704.803}, {"gradient": 6.241329232542219, "elevation": -2689.744, "temperature": 88.08996027509005, "vertical_depth": 2714.744}, {"gradient": 6.076025048170321, "elevation": -2699.685, "temperature": 88.15036204009391, "vertical_depth": 2724.685}, {"gradient": 6.127252958813976, "elevation": -2709.626, "temperature": 88.21127306175748, "vertical_depth": 2734.626}, {"gradient": 5.954317808651728, "elevation": -2719.567, "temperature": 88.27046493509329, "vertical_depth": 2744.567}, {"gradient": 5.919509710480566, "elevation": -2729.508, "temperature": 88.32931078112517, "vertical_depth": 2754.508}, {"gradient": 6.089025477094104, "elevation": -2739.449, "temperature": 88.38984178339297, "vertical_depth": 2764.449}, {"gradient": 5.887091055412538, "elevation": -2749.39, "temperature": 88.44836535557482, "vertical_depth": 2774.39}, {"gradient": 6.055389584511905, "elevation": -2759.33, "temperature": 88.50855592804487, "vertical_depth": 2784.33}, {"gradient": 5.935529581743989, "elevation": -2769.271, "temperature": 88.56756102761699, "vertical_depth": 2794.271}, {"gradient": 5.7591336954035794, "elevation": -2779.212, "temperature": 88.624812575683, "vertical_depth": 2804.212}, {"gradient": 5.684428972788898, "elevation": -2789.153, "temperature": 88.68132148410149, "vertical_depth": 2814.153}, {"gradient": 5.859403540714706, "elevation": -2799.094, "temperature": 88.73956981469973, "vertical_depth": 2824.094}, {"gradient": 5.82095945828257, "elevation": -2809.035, "temperature": 88.79743597267452, "vertical_depth": 2834.035}, {"gradient": 5.649417045690832, "elevation": -2818.976, "temperature": 88.85359682752573, "vertical_depth": 2843.976}, {"gradient": 2351.8655649557804, "elevation": -2819.076, "temperature": 89.0887833840211, "vertical_depth": 2844.076}, {"gradient": -0.34120232101062464, "elevation": -2819.176, "temperature": 89.088749263789, "vertical_depth": 2844.176}, {"gradient": 1.1544917054151234, "elevation": -2828.53, "temperature": 89.09954837920145, "vertical_depth": 2853.53}, {"gradient": -0.6546120898369668, "elevation": -2837.883, "temperature": 89.0934257923252, "vertical_depth": 2862.883}, {"gradient": 1.9557061801870812, "elevation": -2847.237, "temperature": 89.11171946793468, "vertical_depth": 2872.237}, {"gradient": 0.8426510995753672, "elevation": -2856.591, "temperature": 89.1196016263201, "vertical_depth": 2881.591}, {"gradient": 1.8144072034054672, "elevation": -2865.945, "temperature": 89.13657359130076, "vertical_depth": 2890.945}, {"gradient": 2.4716582170978008, "elevation": -2875.299, "temperature": 89.15969348226349, "vertical_depth": 2900.299}, {"gradient": -2712.434205631291, "elevation": -2875.399, "temperature": 88.88845006170061, "vertical_depth": 2900.399}, {"gradient": 1.287330071657806, "elevation": -2875.498, "temperature": 88.8885775073777, "vertical_depth": 2900.498}, {"gradient": 8.548372382268347, "elevation": -2883.604, "temperature": 88.95787061390837, "vertical_depth": 2908.604}, {"gradient": 10.673606128180431, "elevation": -2891.71, "temperature": 89.0443908651834, "vertical_depth": 2916.71}, {"gradient": 7.39279374393372, "elevation": -2899.815, "temperature": 89.10430945847799, "vertical_depth": 2924.815}, {"gradient": 8.784496602572057, "elevation": -2907.921, "temperature": 89.17551658793843, "vertical_depth": 2932.921}, {"gradient": 7.59417172899978, "elevation": -2916.026, "temperature": 89.23706734980198, "vertical_depth": 2941.026}, {"gradient": 6.659027864724217, "elevation": -2924.132, "temperature": 89.29104542967343, "vertical_depth": 2949.132}, {"gradient": 2362.4119105248724, "elevation": -2924.232, "temperature": 89.5272866207257, "vertical_depth": 2949.232}, {"gradient": 6.906965366919012, "elevation": -2924.331, "temperature": 89.52797041029703, "vertical_depth": 2949.331}, {"gradient": 0.04340235755725143, "elevation": -2932.568, "temperature": 89.52832791551623, "vertical_depth": 2957.568}, {"gradient": 1.4659401659317275, "elevation": -2940.805, "temperature": 89.54040286466301, "vertical_depth": 2965.805}, {"gradient": 1.132629953618923, "elevation": -2949.042, "temperature": 89.54973233759097, "vertical_depth": 2974.042}, {"gradient": 2.047322678908168, "elevation": -2957.28, "temperature": 89.56659818181981, "vertical_depth": 2982.28}, {"gradient": 1.8759313899025984, "elevation": -2965.517, "temperature": 89.58205022867844, "vertical_depth": 2990.517}, {"gradient": 2.4411570907649462, "elevation": -2973.754, "temperature": 89.60215803963507, "vertical_depth": 2998.754}, {"gradient": -10.588430833856105, "elevation": -2976.355, "temperature": 89.57461753103621, "vertical_depth": 3001.355}, {"gradient": 8.875457164779302, "elevation": -2978.956, "temperature": 89.5977025951218, "vertical_depth": 3003.956}, {"gradient": -443.195684004939, "elevation": -2979.056, "temperature": 89.55338302672135, "vertical_depth": 3004.056}, {"gradient": 4.7395787981984, "elevation": -2979.156, "temperature": 89.55385698460117, "vertical_depth": 3004.156}, {"gradient": 5.33579779439238, "elevation": -2987.456, "temperature": 89.59814410629463, "vertical_depth": 3012.456}, {"gradient": 5.148352948785508, "elevation": -2995.756, "temperature": 89.64087543576954, "vertical_depth": 3020.756}, {"gradient": 5.120030437407753, "elevation": -3004.056, "temperature": 89.68337168840003, "vertical_depth": 3029.056}, {"gradient": 5.307695170706577, "elevation": -3012.356, "temperature": 89.7274255583169, "vertical_depth": 3037.356}, {"gradient": 5.0922346191774785, "elevation": -3020.655, "temperature": 89.76968601342145, "vertical_depth": 3045.655}, {"gradient": 5.279486825042101, "elevation": -3028.955, "temperature": 89.8135057540693, "vertical_depth": 3053.955}, {"gradient": 5.251132115531558, "elevation": -3037.255, "temperature": 89.85709015062821, "vertical_depth": 3062.255}, {"gradient": 5.063104894784869, "elevation": -3045.555, "temperature": 89.89911392125492, "vertical_depth": 3070.555}, {"gradient": 38.71982777056485, "elevation": -3045.655, "temperature": 89.902985904032, "vertical_depth": 3070.655}, {"gradient": 66.69033449560784, "elevation": -3045.755, "temperature": 89.90965493748155, "vertical_depth": 3070.755}, {"gradient": 4.97141868451421, "elevation": -3055.689, "temperature": 89.95904101069351, "vertical_depth": 3080.689}, {"gradient": 5.15824899462962, "elevation": -3065.623, "temperature": 90.01028305620616, "vertical_depth": 3090.623}, {"gradient": 5.124505005461344, "elevation": -3075.557, "temperature": 90.06118988893041, "vertical_depth": 3100.557}, {"gradient": 4.937439104728953, "elevation": -3085.491, "temperature": 90.11023840899679, "vertical_depth": 3110.491}, {"gradient": 4.903386371297663, "elevation": -3095.425, "temperature": 90.15894864920926, "vertical_depth": 3120.425}, {"gradient": 5.090700667585122, "elevation": -3105.359, "temperature": 90.20951966964105, "vertical_depth": 3130.359}, {"gradient": 5.0567157624229635, "elevation": -3115.293, "temperature": 90.25975308402496, "vertical_depth": 3140.293}, {"gradient": 4.869194874297721, "elevation": -3125.227, "temperature": 90.30812366590624, "vertical_depth": 3150.227}, {"gradient": 4.8349510363189925, "elevation": -3135.161, "temperature": 90.35615406950103, "vertical_depth": 3160.161}, {"gradient": 5.022704551741797, "elevation": -3145.095, "temperature": 90.40604961651803, "vertical_depth": 3170.095}, {"gradient": 4.974476206863818, "elevation": -3155.029, "temperature": 90.45546606315702, "vertical_depth": 3180.029}, {"gradient": 4.786355304883408, "elevation": -3164.963, "temperature": 90.50301371675573, "vertical_depth": 3189.963}, {"gradient": 4.868445404285777, "elevation": -3174.897, "temperature": 90.5513768534019, "vertical_depth": 3199.897}, {"gradient": 4.679484681996373, "elevation": -3184.831, "temperature": 90.59786285423286, "vertical_depth": 3209.831}, {"gradient": 4.834447974534246, "elevation": -3194.765, "temperature": 90.64588826041188, "vertical_depth": 3219.765}, {"gradient": 4.645226850002428, "elevation": -3204.699, "temperature": 90.6920339439398, "vertical_depth": 3229.699}, {"gradient": 4.610962298136959, "elevation": -3214.633, "temperature": 90.7378392434095, "vertical_depth": 3239.633}, {"gradient": 4.80052661161106, "elevation": -3224.567, "temperature": 90.78552767476924, "vertical_depth": 3249.567}, {"gradient": 4.766255005582386, "elevation": -3234.501, "temperature": 90.8328756519947, "vertical_depth": 3259.501}, {"gradient": 4.576921806805771, "elevation": -3244.434, "temperature": 90.8783382163017, "vertical_depth": 3269.434}, {"gradient": 4.541871286361042, "elevation": -3254.368, "temperature": 90.92345716566041, "vertical_depth": 3279.368}, {"gradient": 4.731894802487829, "elevation": -3264.302, "temperature": 90.97046380862832, "vertical_depth": 3289.302}, {"gradient": 4.507192927612679, "elevation": -3274.236, "temperature": 91.01523826317123, "vertical_depth": 3299.236}, {"gradient": 4.697445977075723, "elevation": -3284.17, "temperature": 91.0619026915075, "vertical_depth": 3309.17}, {"gradient": 4.662908506114527, "elevation": -3294.104, "temperature": 91.10822402460724, "vertical_depth": 3319.104}, {"gradient": 4.472425992083099, "elevation": -3304.038, "temperature": 91.1526531044126, "vertical_depth": 3329.038}, {"gradient": 4.416103385678022, "elevation": -3313.972, "temperature": 91.19652267544592, "vertical_depth": 3338.972}, {"gradient": 4.607009258277793, "elevation": -3323.906, "temperature": 91.24228870541765, "vertical_depth": 3348.906}, {"gradient": 4.261879693025631, "elevation": -3333.84, "temperature": 91.28462621828817, "vertical_depth": 3358.84}, {"gradient": 4.454014195977763, "elevation": -3343.774, "temperature": 91.32887239531101, "vertical_depth": 3368.774}, {"gradient": 4.4193129889843705, "elevation": -3353.708, "temperature": 91.37277385054358, "vertical_depth": 3378.708}, {"gradient": 4.226982201312731, "elevation": -3363.642, "temperature": 91.41476469173142, "vertical_depth": 3388.642}, {"gradient": 4.1920526896283565, "elevation": -3373.576, "temperature": 91.45640854315019, "vertical_depth": 3398.576}, {"gradient": 4.384618327916562, "elevation": -3383.51, "temperature": 91.49996534161971, "vertical_depth": 3408.51}, {"gradient": 4.350210076111363, "elevation": -3393.444, "temperature": 91.5431803285158, "vertical_depth": 3418.444}, {"gradient": 4.157231623451319, "elevation": -3403.378, "temperature": 91.58447826746317, "vertical_depth": 3428.378}, {"gradient": 4.122010429708466, "elevation": -3413.312, "temperature": 91.62542631907189, "vertical_depth": 3438.312}, {"gradient": 4.315212583274342, "elevation": -3423.246, "temperature": 91.66829364087414, "vertical_depth": 3448.246}, {"gradient": 4.08664678606593, "elevation": -3433.18, "temperature": 91.70889039004692, "vertical_depth": 3458.18}, {"gradient": 4.2800728923107725, "elevation": -3443.114, "temperature": 91.75140863415913, "vertical_depth": 3468.114}, {"gradient": 4.244977667160438, "elevation": -3453.048, "temperature": 91.7935782423047, "vertical_depth": 3478.048}, {"gradient": 4.05132704758985, "elevation": -3462.982, "temperature": 91.83382412519546, "vertical_depth": 3487.982}, {"gradient": -899.213410221727, "elevation": -3463.082, "temperature": 91.74390278417337, "vertical_depth": 3488.082}, {"gradient": -1634.858255950812, "elevation": -3463.182, "temperature": 91.58041695857844, "vertical_depth": 3488.182}, {"gradient": 5.871948071008937, "elevation": -3473.132, "temperature": 91.63884284188498, "vertical_depth": 3498.132}, {"gradient": 5.617895872065499, "elevation": -3483.081, "temperature": 91.69473528791616, "vertical_depth": 3508.081}, {"gradient": 5.825492664409079, "elevation": -3493.031, "temperature": 91.75269893992703, "vertical_depth": 3518.031}, {"gradient": 5.570405539907702, "elevation": -3502.981, "temperature": 91.80812447504911, "vertical_depth": 3527.981}, {"gradient": 5.523294478508767, "elevation": -3512.931, "temperature": 91.86308125511027, "vertical_depth": 3537.931}, {"gradient": 5.77941387797759, "elevation": -3522.88, "temperature": 91.92058064378227, "vertical_depth": 3547.88}, {"gradient": 5.477062325663437, "elevation": -3532.828, "temperature": 91.97506645979797, "vertical_depth": 3557.828}, {"gradient": 5.733189671160566, "elevation": -3542.776, "temperature": 92.03210023064668, "vertical_depth": 3567.776}, {"gradient": 5.6889560155765455, "elevation": -3552.718, "temperature": 92.08865983135354, "vertical_depth": 3577.718}, {"gradient": 5.435431966948399, "elevation": -3562.654, "temperature": 92.14266628337714, "vertical_depth": 3587.654}, {"gradient": 5.391335674202181, "elevation": -3572.579, "temperature": 92.1961752899436, "vertical_depth": 3597.579}, {"gradient": 5.653669728907384, "elevation": -3582.495, "temperature": 92.25223707897544, "vertical_depth": 3607.495}, {"gradient": 5.609672816616943, "elevation": -3592.398, "temperature": 92.3077896688784, "vertical_depth": 3617.398}, {"gradient": 5.359770903158588, "elevation": -3602.287, "temperature": 92.36079244333973, "vertical_depth": 3627.287}, {"gradient": 5.315439477404261, "elevation": -3612.162, "temperature": 92.4132824081791, "vertical_depth": 3637.162}, {"gradient": 5.58229009360576, "elevation": -3622.021, "temperature": 92.46831820621196, "vertical_depth": 3647.021}, {"gradient": 5.236314619894957, "elevation": -3631.862, "temperature": 92.51984877838635, "vertical_depth": 3656.862}, {"gradient": 5.5049571761993885, "elevation": -3641.685, "temperature": 92.57392397272815, "vertical_depth": 3666.685}, {"gradient": 5.428991663683801, "elevation": -3651.488, "temperature": 92.62714437800724, "vertical_depth": 3676.488}, {"gradient": 5.18094106789143, "elevation": -3661.27, "temperature": 92.67782434353336, "vertical_depth": 3686.27}, {"gradient": 5.138373150579879, "elevation": -3671.03, "temperature": 92.72797486548302, "vertical_depth": 3696.03}, {"gradient": 5.4115451218270225, "elevation": -3680.765, "temperature": 92.780656257244, "vertical_depth": 3705.765}, {"gradient": 5.109713873104741, "elevation": -3690.475, "temperature": 92.83027157895185, "vertical_depth": 3715.475}, {"gradient": 5.3841802143243624, "elevation": -3700.158, "temperature": 92.88240659596715, "vertical_depth": 3725.158}, {"gradient": 5.341925469197119, "elevation": -3709.814, "temperature": 92.93398822829772, "vertical_depth": 3734.814}, {"gradient": 5.098139771309531, "elevation": -3719.44, "temperature": 92.98306292173635, "vertical_depth": 3744.44}, {"gradient": 5.05724258109572, "elevation": -3729.036, "temperature": 93.03159222154454, "vertical_depth": 3754.036}, {"gradient": 5.334820434236493, "elevation": -3738.6, "temperature": 93.08261444417758, "vertical_depth": 3763.6}, {"gradient": 5.293287814737272, "elevation": -3748.132, "temperature": 93.13307006362766, "vertical_depth": 3773.132}, {"gradient": 5.0514462136870675, "elevation": -3757.63, "temperature": 93.18104869976526, "vertical_depth": 3782.63}, {"gradient": 5.012523583174559, "elevation": -3767.091, "temperature": 93.22847218538567, "vertical_depth": 3792.091}, {"gradient": 5.292621901446384, "elevation": -3776.516, "temperature": 93.2783551468068, "vertical_depth": 3801.516}, {"gradient": 4.992951894128342, "elevation": -3785.902, "temperature": 93.32521899328509, "vertical_depth": 3810.902}, {"gradient": 5.274844219610352, "elevation": -3795.249, "temperature": 93.37452296220579, "vertical_depth": 3820.249}, {"gradient": 5.234840501403584, "elevation": -3804.556, "temperature": 93.42324362275235, "vertical_depth": 3829.556}, {"gradient": 4.997406445804815, "elevation": -3813.821, "temperature": 93.46954459347273, "vertical_depth": 3838.821}, {"gradient": 4.95980657422296, "elevation": -3823.042, "temperature": 93.51527896989364, "vertical_depth": 3848.042}, {"gradient": 5.244272998954188, "elevation": -3832.22, "temperature": 93.56341090747804, "vertical_depth": 3857.22}, {"gradient": 5.2063264300792955, "elevation": -3841.351, "temperature": 93.6109498741111, "vertical_depth": 3866.351}, {"gradient": 4.971365458438038, "elevation": -3850.436, "temperature": 93.65611472930101, "vertical_depth": 3875.436}, {"gradient": 4.934507321655909, "elevation": -3859.473, "temperature": 93.70070787196681, "vertical_depth": 3884.473}, {"gradient": 5.223421120482946, "elevation": -3868.46, "temperature": 93.7476507575766, "vertical_depth": 3893.46}, {"gradient": 5.0909042663613615, "elevation": -3877.397, "temperature": 93.79314816900506, "vertical_depth": 3902.397}, {"gradient": 4.858010174360735, "elevation": -3886.282, "temperature": 93.83631158940426, "vertical_depth": 3911.282}, {"gradient": 5.02880089972261, "elevation": -3895.136, "temperature": 93.8808365925704, "vertical_depth": 3920.136}, {"gradient": 4.766137106244359, "elevation": -3903.99, "temperature": 93.92303597050909, "vertical_depth": 3928.99}, {"gradient": 4.71716721265808, "elevation": -3912.844, "temperature": 93.96480176900997, "vertical_depth": 3937.844}, {"gradient": 4.980806939067437, "elevation": -3921.697, "temperature": 94.00889685284153, "vertical_depth": 3946.697}, {"gradient": 4.931648723194261, "elevation": -3930.551, "temperature": 94.05256167063669, "vertical_depth": 3955.551}, {"gradient": 4.668683142223349, "elevation": -3939.404, "temperature": 94.0938935224948, "vertical_depth": 3964.404}, {"gradient": 4.619012310176905, "elevation": -3948.258, "temperature": 94.1347902574891, "vertical_depth": 3973.258}, {"gradient": 4.8829197920063665, "elevation": -3957.112, "temperature": 94.17802362932753, "vertical_depth": 3982.112}, {"gradient": 4.834664656159873, "elevation": -3965.965, "temperature": 94.22082491552851, "vertical_depth": 3990.965}, {"gradient": 4.569769299974932, "elevation": -3974.819, "temperature": 94.26128565291049, "vertical_depth": 3999.819}, {"gradient": 4.785175850815547, "elevation": -3983.673, "temperature": 94.30365359989361, "vertical_depth": 4008.673}, {"gradient": 4.520897938219003, "elevation": -3992.526, "temperature": 94.34367710934066, "vertical_depth": 4017.526}, {"gradient": 4.7359269428807105, "elevation": -4001.38, "temperature": 94.38560900649293, "vertical_depth": 4026.38}, {"gradient": 4.4707780796219465, "elevation": -4010.234, "temperature": 94.4251932756099, "vertical_depth": 4035.234}, {"gradient": 4.687383793691065, "elevation": -4019.087, "temperature": 94.46669068433545, "vertical_depth": 4044.087}, {"gradient": 4.421210570590639, "elevation": -4027.941, "temperature": 94.50583608272746, "vertical_depth": 4052.941}, {"gradient": 4.372078223460101, "elevation": -4036.794, "temperature": 94.54454209123975, "vertical_depth": 4061.794}, {"gradient": 4.637811789132578, "elevation": -4045.648, "temperature": 94.58560527682073, "vertical_depth": 4070.648}, {"gradient": 4.321589734085452, "elevation": -4054.502, "temperature": 94.62386863232632, "vertical_depth": 4079.502}, {"gradient": 4.588735821806221, "elevation": -4063.355, "temperature": 94.66449271055677, "vertical_depth": 4088.355}, {"gradient": 4.538418862624003, "elevation": -4072.209, "temperature": 94.70467587116644, "vertical_depth": 4097.209}, {"gradient": 4.271389718740656, "elevation": -4081.063, "temperature": 94.74249475573617, "vertical_depth": 4106.063}, {"gradient": 4.179717584089665, "elevation": -4089.916, "temperature": 94.77949779550812, "vertical_depth": 4114.916}, {"gradient": 4.44717591427908, "elevation": -4098.77, "temperature": 94.81887309105315, "vertical_depth": 4123.77}, {"gradient": 4.09937601868368, "elevation": -4107.623, "temperature": 94.85516486694655, "vertical_depth": 4132.623}, {"gradient": 4.367576700783512, "elevation": -4116.477, "temperature": 94.89383539105529, "vertical_depth": 4141.477}, {"gradient": 4.3175449423439725, "elevation": -4125.331, "temperature": 94.9320629339748, "vertical_depth": 4150.331}, {"gradient": 4.048946560686014, "elevation": -4134.184, "temperature": 94.96790825787656, "vertical_depth": 4159.184}, {"gradient": 3.9979236284238064, "elevation": -4143.038, "temperature": 95.00330587368262, "vertical_depth": 4168.038}, {"gradient": 4.26735984760718, "elevation": -4151.892, "temperature": 95.04108907777334, "vertical_depth": 4176.892}, {"gradient": 3.9476558357051754, "elevation": -4160.745, "temperature": 95.07603767488683, "vertical_depth": 4185.745}, {"gradient": 4.217005640816659, "elevation": -4169.599, "temperature": 95.11337504283063, "vertical_depth": 4194.599}, {"gradient": 4.166633721760631, "elevation": -4178.453, "temperature": 95.1502664178031, "vertical_depth": 4203.453}, {"gradient": 3.8968704600668, "elevation": -4187.306, "temperature": 95.18476541198606, "vertical_depth": 4212.306}, {"gradient": 4.116108915851712, "elevation": -4196.16, "temperature": 95.22120944032702, "vertical_depth": 4221.16}, {"gradient": 3.8459420009256253, "elevation": -4205.013, "temperature": 95.25525756486121, "vertical_depth": 4230.013}, {"gradient": 4.0654629423853175, "elevation": -4213.867, "temperature": 95.29125317375309, "vertical_depth": 4238.867}, {"gradient": 3.794459954442266, "elevation": -4222.721, "temperature": 95.32484932218972, "vertical_depth": 4247.721}, {"gradient": 3.743831072866823, "elevation": -4231.574, "temperature": 95.35799345867781, "vertical_depth": 4256.574}, {"gradient": 4.014920632959905, "elevation": -4240.428, "temperature": 95.39354156596204, "vertical_depth": 4265.428}, {"gradient": 3.9639628477377653, "elevation": -4249.282, "temperature": 95.42863849301591, "vertical_depth": 4274.282}, {"gradient": 3.6924795711660434, "elevation": -4258.135, "temperature": 95.46132801465944, "vertical_depth": 4283.135}, {"gradient": 3.6405669199375645, "elevation": -4266.989, "temperature": 95.49356159416857, "vertical_depth": 4291.989}, {"gradient": 3.9132764234435307, "elevation": -4275.842, "temperature": 95.52820583034531, "vertical_depth": 4300.842}, {"gradient": 3.5889428307584343, "elevation": -4284.696, "temperature": 95.55998233016885, "vertical_depth": 4309.696}, {"gradient": 3.8615724541426304, "elevation": -4293.55, "temperature": 95.59417269267783, "vertical_depth": 4318.55}, {"gradient": 3.810611851400399, "elevation": -4302.403, "temperature": 95.62790803939828, "vertical_depth": 4327.403}, {"gradient": 3.5371931536731274, "elevation": -4311.257, "temperature": 95.6592263475809, "vertical_depth": 4336.257}, {"gradient": 3.7586858979637463, "elevation": -4320.111, "temperature": 95.69250575252147, "vertical_depth": 4345.111}, {"gradient": 3.4857253176104366, "elevation": -4328.964, "temperature": 95.72336487875828, "vertical_depth": 4353.964}, {"gradient": 3.433347868732214, "elevation": -4337.818, "temperature": 95.75376374078803, "vertical_depth": 4362.818}, {"gradient": 3.707069578627164, "elevation": -4346.672, "temperature": 95.7865861348372, "vertical_depth": 4371.672}, {"gradient": 3.65569966571774, "elevation": -4355.525, "temperature": 95.8189500439778, "vertical_depth": 4380.525}, {"gradient": 3.3812183023595357, "elevation": -4364.379, "temperature": 95.84888735082689, "vertical_depth": 4389.379}, {"gradient": 3.3293602888285414, "elevation": -4373.232, "temperature": 95.87836217746388, "vertical_depth": 4398.232}, {"gradient": 3.603410935424716, "elevation": -4382.086, "temperature": 95.91026677788614, "vertical_depth": 4407.086}, {"gradient": 3.5513936314212686, "elevation": -4390.94, "temperature": 95.94171081709874, "vertical_depth": 4415.94}, {"gradient": 3.276987690187262, "elevation": -4399.793, "temperature": 95.97072198911997, "vertical_depth": 4424.793}, {"gradient": 3.2241135117303363, "elevation": -4408.647, "temperature": 95.99926829015283, "vertical_depth": 4433.647}, {"gradient": 3.499222316240667, "elevation": -4417.501, "temperature": 96.03025040454082, "vertical_depth": 4442.501}, {"gradient": 3.4473142686968465, "elevation": -4426.354, "temperature": 96.0607694777616, "vertical_depth": 4451.354}, {"gradient": 3.1714882396466333, "elevation": -4435.208, "temperature": 96.08884983463543, "vertical_depth": 4460.208}, {"gradient": 3.1191114184960984, "elevation": -4444.061, "temperature": 96.11646332802337, "vertical_depth": 4469.061}, {"gradient": 3.394532291582341, "elevation": -4452.915, "temperature": 96.14651851693304, "vertical_depth": 4477.915}, {"gradient": 3.0659023131565313, "elevation": -4461.769, "temperature": 96.17366401601373, "vertical_depth": 4486.769}, {"gradient": 3.342380920359202, "elevation": -4470.622, "temperature": 96.20325411430167, "vertical_depth": 4495.622}, {"gradient": 3.2665181165479806, "elevation": -4479.476, "temperature": 96.23217586570559, "vertical_depth": 4504.476}, {"gradient": 2.9898492112983095, "elevation": -4488.33, "temperature": 96.25864799062242, "vertical_depth": 4513.33}, {"gradient": 2.8452942843655014, "elevation": -4497.183, "temperature": 96.28383738092191, "vertical_depth": 4522.183}, {"gradient": 3.1229671896629227, "elevation": -4506.037, "temperature": 96.31148813241919, "vertical_depth": 4531.037}, {"gradient": 2.7922207375536408, "elevation": -4514.891, "temperature": 96.33621045482948, "vertical_depth": 4539.891}, {"gradient": 3.0708526517116095, "elevation": -4523.744, "temperature": 96.36339671335509, "vertical_depth": 4548.744}, {"gradient": 3.017044208098685, "elevation": -4532.598, "temperature": 96.3901096227736, "vertical_depth": 4557.598}, {"gradient": 2.738773507610844, "elevation": -4541.451, "temperature": 96.41435598463647, "vertical_depth": 4566.451}, {"gradient": 2.620755521046681, "elevation": -4550.305, "temperature": 96.43756015401982, "vertical_depth": 4575.305}, {"gradient": 2.9003324865429554, "elevation": -4559.159, "temperature": 96.46323969785567, "vertical_depth": 4584.159}, {"gradient": 2.847887606994622, "elevation": -4568.012, "temperature": 96.4884520468404, "vertical_depth": 4593.012}, {"gradient": 2.567723148569249, "elevation": -4576.866, "temperature": 96.51118666759783, "vertical_depth": 4601.866}, {"gradient": 2.7947330088168, "elevation": -4585.72, "temperature": 96.53593123365789, "vertical_depth": 4610.72}, {"gradient": 2.5148920571226037, "elevation": -4594.573, "temperature": 96.5581955730396, "vertical_depth": 4619.573}, {"gradient": 2.741685348650758, "elevation": -4603.427, "temperature": 96.58247045511655, "vertical_depth": 4628.427}, {"gradient": 2.461607651107014, "elevation": -4612.28, "temperature": 96.6042630676518, "vertical_depth": 4637.28}, {"gradient": 2.408120529411893, "elevation": -4621.134, "temperature": 96.62558456681921, "vertical_depth": 4646.134}, {"gradient": 2.688842275325308, "elevation": -4629.988, "temperature": 96.64939157632494, "vertical_depth": 4654.988}, {"gradient": 2.6359933586879185, "elevation": -4638.841, "temperature": 96.67272802552941, "vertical_depth": 4663.841}, {"gradient": 2.354688335779577, "elevation": -4647.695, "temperature": 96.6935764360544, "vertical_depth": 4672.695}, {"gradient": 2.3010789845022512, "elevation": -4656.549, "temperature": 96.71395018938318, "vertical_depth": 4681.549}, {"gradient": 2.582597953296166, "elevation": -4665.402, "temperature": 96.73681392906371, "vertical_depth": 4690.402}, {"gradient": 2.247359522938894, "elevation": -4674.256, "temperature": 96.75671205027982, "vertical_depth": 4699.256}, {"gradient": 2.5287904985978025, "elevation": -4683.11, "temperature": 96.7791019613544, "vertical_depth": 4708.11}, {"gradient": 2.475508934983581, "elevation": -4691.963, "temperature": 96.80101764195581, "vertical_depth": 4716.963}, {"gradient": 2.193575355055773, "elevation": -4700.817, "temperature": 96.82043955814947, "vertical_depth": 4725.817}, {"gradient": 2.139896324457555, "elevation": -4709.67, "temperature": 96.8393840603099, "vertical_depth": 4734.67}, {"gradient": 2.4214940379122405, "elevation": -4718.524, "temperature": 96.86082396852157, "vertical_depth": 4743.524}, {"gradient": 2.0856279107426645, "elevation": -4727.378, "temperature": 96.87929011804329, "vertical_depth": 4752.378}, {"gradient": 2.367901001569262, "elevation": -4736.231, "temperature": 96.90025314561018, "vertical_depth": 4761.231}, {"gradient": 2.031505372791275, "elevation": -4745.085, "temperature": 96.91824009418087, "vertical_depth": 4770.085}, {"gradient": 2.3136638604613533, "elevation": -4753.939, "temperature": 96.9387252740014, "vertical_depth": 4778.939}, {"gradient": 653.1603163124281, "elevation": -4754.027, "temperature": 96.99620338183672, "vertical_depth": 4779.027}, {"gradient": 1149.9541391506875, "elevation": -4754.116, "temperature": 97.09854930022107, "vertical_depth": 4779.116}, {"gradient": 0.9151423731542393, "elevation": -4762.678, "temperature": 97.10638474922001, "vertical_depth": 4787.678}, {"gradient": 0.7756630096207848, "elevation": -4771.24, "temperature": 97.11302597590839, "vertical_depth": 4796.24}, {"gradient": 0.7507000639347341, "elevation": -4779.801, "temperature": 97.11945271915573, "vertical_depth": 4804.801}, {"gradient": 0.8901550782545878, "elevation": -4788.363, "temperature": 97.12707422693575, "vertical_depth": 4813.363}, {"gradient": 0.8651303535835411, "elevation": -4796.925, "temperature": 97.13448147302313, "vertical_depth": 4821.925}, {"gradient": 0.7256101374546574, "elevation": -4805.486, "temperature": 97.14069342140988, "vertical_depth": 4830.486}, {"gradient": 0.7003943496409015, "elevation": -4814.048, "temperature": 97.1466901978315, "vertical_depth": 4839.048}, {"gradient": 0.8400531570858235, "elevation": -4822.61, "temperature": 97.15388273296247, "vertical_depth": 4847.61}, {"gradient": 0.675306291647912, "elevation": -4831.171, "temperature": 97.15966403012527, "vertical_depth": 4856.171}, {"gradient": 0.8149373820910167, "elevation": -4839.733, "temperature": 97.16664152399073, "vertical_depth": 4864.733}, {"gradient": 0.7897831237165771, "elevation": -4848.295, "temperature": 97.173403647096, "vertical_depth": 4873.295}, {"gradient": 0.6501008195018383, "elevation": -4856.856, "temperature": 97.17896916021175, "vertical_depth": 4881.856}, {"gradient": 0.6669826538178126, "elevation": -4865.418, "temperature": 97.18467986569374, "vertical_depth": 4890.418}, {"gradient": 0.8446343352854946, "elevation": -4873.979, "temperature": 97.19191078023812, "vertical_depth": 4898.979}, {"gradient": 0.728923393022942, "elevation": -4882.541, "temperature": 97.19815182232918, "vertical_depth": 4907.541}, {"gradient": 0.5904411174432819, "elevation": -4891.103, "temperature": 97.20320717917673, "vertical_depth": 4916.103}, {"gradient": 0.7040001622884392, "elevation": -4899.664, "temperature": 97.20923412456608, "vertical_depth": 4924.664}, {"gradient": 0.5653974941014472, "elevation": -4908.226, "temperature": 97.21407505791058, "vertical_depth": 4933.226}, {"gradient": 0.6788749865072929, "elevation": -4916.788, "temperature": 97.21988758554505, "vertical_depth": 4941.788}, {"gradient": 0.5403831822555751, "elevation": -4925.349, "temperature": 97.22451380596834, "vertical_depth": 4950.349}, {"gradient": 0.5152091981095853, "elevation": -4933.911, "temperature": 97.22892502712256, "vertical_depth": 4958.911}, {"gradient": 0.6537945870601848, "elevation": -4942.473, "temperature": 97.23452281637697, "vertical_depth": 4967.473}, {"gradient": 0.4901225029269177, "elevation": -4951.034, "temperature": 97.23871875512452, "vertical_depth": 4976.034}, {"gradient": 0.62867677175046, "elevation": -4959.596, "temperature": 97.24410148564425, "vertical_depth": 4984.596}, {"gradient": 0.603521543326615, "elevation": -4968.158, "temperature": 97.24926883709821, "vertical_depth": 4993.158}, {"gradient": 0.4649429444079716, "elevation": -4976.719, "temperature": 97.25324921364529, "vertical_depth": 5001.719}, {"gradient": 0.4354497967163569, "elevation": -4985.281, "temperature": 97.25697753480478, "vertical_depth": 5010.281}, {"gradient": 0.5741203530752893, "elevation": -4993.843, "temperature": 97.2618931532678, "vertical_depth": 5018.843}, {"gradient": 0.49220073259511915, "elevation": -5002.404, "temperature": 97.26610688373955, "vertical_depth": 5027.404}, {"gradient": 0.3531882663324819, "elevation": -5010.966, "temperature": 97.26913088167589, "vertical_depth": 5035.966}, {"gradient": 0.4669339859488653, "elevation": -5019.528, "temperature": 97.27312877046359, "vertical_depth": 5044.528}, {"gradient": 0.328018517315005, "elevation": -5028.089, "temperature": 97.27593693699032, "vertical_depth": 5053.089}, {"gradient": 0.302748692354426, "elevation": -5036.651, "temperature": 97.27852907129426, "vertical_depth": 5061.651}, {"gradient": 0.44170059477019463, "elevation": -5045.213, "temperature": 97.28231091178668, "vertical_depth": 5070.213}, {"gradient": 0.41647795010194494, "elevation": -5053.774, "temperature": 97.2858763795175, "vertical_depth": 5078.774}, {"gradient": 0.27748646732830157, "elevation": -5062.336, "temperature": 97.28825221865077, "vertical_depth": 5087.336}, {"gradient": 0.25219258760172214, "elevation": -5070.898, "temperature": 97.29041149158581, "vertical_depth": 5095.898}, {"gradient": 0.39116289130078735, "elevation": -5079.459, "temperature": 97.29376023709824, "vertical_depth": 5104.459}, {"gradient": 0.22686831764532037, "elevation": -5088.021, "temperature": 97.29570268363392, "vertical_depth": 5113.021}, {"gradient": 0.3657651119266767, "elevation": -5096.583, "temperature": 97.29883436452224, "vertical_depth": 5121.583}, {"gradient": 0.34041197001943396, "elevation": -5105.144, "temperature": 97.30174863139757, "vertical_depth": 5130.144}, {"gradient": 0.20151406824939538, "elevation": -5113.706, "temperature": 97.30347399484992, "vertical_depth": 5138.706}, {"gradient": 0.17613020387042028, "elevation": -5122.268, "temperature": 97.30498202165546, "vertical_depth": 5147.268}, {"gradient": 0.3149741918543888, "elevation": -5130.829, "temperature": 97.30767851571193, "vertical_depth": 5155.829}, {"gradient": 0.28945920832672195, "elevation": -5139.391, "temperature": 97.31015686545362, "vertical_depth": 5164.391}, {"gradient": 0.15073461451309683, "elevation": -5147.952, "temperature": 97.31144730448847, "vertical_depth": 5172.952}, {"gradient": 0.12527464205849928, "elevation": -5156.514, "temperature": 97.31251990597377, "vertical_depth": 5181.514}, {"gradient": 0.263935622638294, "elevation": -5165.076, "temperature": 97.3147797227748, "vertical_depth": 5190.076}, {"gradient": 0.23839177755241464, "elevation": -5173.637, "temperature": 97.31682059478243, "vertical_depth": 5198.637}, {"gradient": 0.09980305999206705, "elevation": -5182.199, "temperature": 97.31767510858208, "vertical_depth": 5207.199}, {"gradient": 0.07430191013947757, "elevation": -5190.761, "temperature": 97.3183112815367, "vertical_depth": 5215.761}, {"gradient": 0.21276528269605677, "elevation": -5199.322, "temperature": 97.32013276512185, "vertical_depth": 5224.322}, {"gradient": 30.33143470893307, "elevation": -5199.411, "temperature": 97.32283226281095, "vertical_depth": 5224.411}, {"gradient": -0.6329573807310728, "elevation": -5199.5, "temperature": 97.32277592960406, "vertical_depth": 5224.5}, {"gradient": -2.3031160386056304, "elevation": -5207.184, "temperature": 97.30507878596342, "vertical_depth": 5232.184}, {"gradient": -2.484937833632845, "elevation": -5214.869, "temperature": 97.28598203871195, "vertical_depth": 5239.869}, {"gradient": -2.5091108409877307, "elevation": -5222.553, "temperature": 97.2667020310098, "vertical_depth": 5247.553}, {"gradient": -2.3272472563741577, "elevation": -5230.237, "temperature": 97.24881946309182, "vertical_depth": 5255.237}, {"gradient": -1.0114965438125472, "elevation": -5230.326, "temperature": 97.24872943989942, "vertical_depth": 5255.326}, {"gradient": -1.88760007626586, "elevation": -5230.415, "temperature": 97.24856144349263, "vertical_depth": 5255.415}, {"gradient": -2.3545969901568022, "elevation": -5238.284, "temperature": 97.23003311977709, "vertical_depth": 5263.284}, {"gradient": -2.535041822138387, "elevation": -5246.154, "temperature": 97.21008234063686, "vertical_depth": 5271.154}, {"gradient": -2.5597475728764967, "elevation": -5254.023, "temperature": 97.1899396869859, "vertical_depth": 5279.023}, {"gradient": -2.37939567811194, "elevation": -5261.892, "temperature": 97.17121622239483, "vertical_depth": 5286.892}, {"gradient": -2.4040250725298384, "elevation": -5269.762, "temperature": 97.15229654507402, "vertical_depth": 5294.762}, {"gradient": -2.5841756285859767, "elevation": -5277.631, "temperature": 97.13196166705268, "vertical_depth": 5302.631}, {"gradient": -2.608329864712897, "elevation": -5285.501, "temperature": 97.11143411101739, "vertical_depth": 5310.501}, {"gradient": -2.4294465374973555, "elevation": -5293.37, "temperature": 97.09231679621382, "vertical_depth": 5318.37}, {"gradient": -2.4548188724693927, "elevation": -5301.239, "temperature": 97.07299982650636, "vertical_depth": 5326.239}, {"gradient": -2.6328947552949704, "elevation": -5309.109, "temperature": 97.05227894478219, "vertical_depth": 5334.109}, {"gradient": -2.4805851336488516, "elevation": -5316.978, "temperature": 97.0327592203655, "vertical_depth": 5341.978}, {"gradient": -2.65792891087811, "elevation": -5324.847, "temperature": 97.0118439777658, "vertical_depth": 5349.847}, {"gradient": -2.682529123846106, "elevation": -5332.717, "temperature": 96.99073247356114, "vertical_depth": 5357.717}, {"gradient": -2.5070299713504247, "elevation": -5340.586, "temperature": 96.97100465471658, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "COP/COI (Prod GL PO)", "calculated_from": "mGNrD2K2bD-5", "source": "GRADIENT", "_id": "RdVqZ7MzBp", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 84.0934827473638, "vertical_depth": 2072.0}, {"gradient": 43.426422794464436, "elevation": -2053.685, "temperature": 84.38378838374479, "vertical_depth": 2078.685}, {"gradient": 82.96360673186574, "elevation": -2060.369, "temperature": 84.9383171311406, "vertical_depth": 2085.369}, {"gradient": 65.07654489891567, "elevation": -2067.05, "temperature": 85.37309352761025, "vertical_depth": 2092.05}, {"gradient": 34.07292331632879, "elevation": -2073.729, "temperature": 85.60066658244, "vertical_depth": 2098.729}, {"gradient": 50.97047192339578, "elevation": -2080.405, "temperature": 85.94094545300061, "vertical_depth": 2105.405}, {"gradient": 26.696160212980903, "elevation": -2087.08, "temperature": 86.11914232242225, "vertical_depth": 2112.08}, {"gradient": -6884.314170564503, "elevation": -2087.18, "temperature": 85.43071090536642, "vertical_depth": 2112.18}, {"gradient": 99.46177224285489, "elevation": -2087.28, "temperature": 85.44065708259075, "vertical_depth": 2112.28}, {"gradient": 39.45270384682192, "elevation": -2096.532, "temperature": 85.80567349858154, "vertical_depth": 2121.532}, {"gradient": 66.44322829023996, "elevation": -2105.785, "temperature": 86.42047268995111, "vertical_depth": 2130.785}, {"gradient": 42.653630176419824, "elevation": -2115.037, "temperature": 86.81510407634335, "vertical_depth": 2140.037}, {"gradient": 25.67916289440911, "elevation": -2124.289, "temperature": 87.05268769144243, "vertical_depth": 2149.289}, {"gradient": 16.980275631119728, "elevation": -2133.542, "temperature": 87.20980618185718, "vertical_depth": 2158.542}, {"gradient": 27.625631907182502, "elevation": -2142.794, "temperature": 87.46539852826243, "vertical_depth": 2167.794}, {"gradient": 6.158443326290725, "elevation": -2142.894, "temperature": 87.46601437259505, "vertical_depth": 2167.894}, {"gradient": 5.783247014484793, "elevation": -2142.994, "temperature": 87.4665926972965, "vertical_depth": 2167.994}, {"gradient": 3.7297900990119546, "elevation": -2152.935, "temperature": 87.50367054067078, "vertical_depth": 2177.935}, {"gradient": 4.607763081991214, "elevation": -2162.876, "temperature": 87.54947631346886, "vertical_depth": 2187.876}, {"gradient": 5.188517660764152, "elevation": -2172.816, "temperature": 87.60105017901685, "vertical_depth": 2197.816}, {"gradient": 4.773363627512918, "elevation": -2182.757, "temperature": 87.64850218683796, "vertical_depth": 2207.757}, {"gradient": 5.3422916875833675, "elevation": -2192.698, "temperature": 87.70160990850422, "vertical_depth": 2217.698}, {"gradient": 5.4995150165962645, "elevation": -2202.639, "temperature": 87.75628058728421, "vertical_depth": 2227.639}, {"gradient": 5.661742848440203, "elevation": -2212.58, "temperature": 87.81256397294055, "vertical_depth": 2237.58}, {"gradient": 5.647579811248101, "elevation": -2222.521, "temperature": 87.86870656384417, "vertical_depth": 2247.521}, {"gradient": 5.80583138116834, "elevation": -2232.462, "temperature": 87.92642233360436, "vertical_depth": 2257.462}, {"gradient": 5.740378410466715, "elevation": -2242.403, "temperature": 87.98348743538281, "vertical_depth": 2267.403}, {"gradient": 5.883027891171457, "elevation": -2252.344, "temperature": 88.04197061564895, "vertical_depth": 2277.344}, {"gradient": 5.773305356401358, "elevation": -2262.285, "temperature": 88.09936304419693, "vertical_depth": 2287.285}, {"gradient": 5.780775991145767, "elevation": -2272.226, "temperature": 88.15682973832492, "vertical_depth": 2297.226}, {"gradient": 5.915162533412369, "elevation": -2282.167, "temperature": 88.21563236906957, "vertical_depth": 2307.167}, {"gradient": 5.9227498888237635, "elevation": -2292.107, "temperature": 88.27450450296448, "vertical_depth": 2317.107}, {"gradient": 5.773981663674247, "elevation": -2302.048, "temperature": 88.33190365468306, "vertical_depth": 2327.048}, {"gradient": 5.759237215565993, "elevation": -2311.989, "temperature": 88.389156231843, "vertical_depth": 2336.989}, {"gradient": 5.915152693039477, "elevation": -2321.93, "temperature": 88.44795876476451, "vertical_depth": 2346.93}, {"gradient": 5.900360713969363, "elevation": -2331.871, "temperature": 88.50661425062208, "vertical_depth": 2356.871}, {"gradient": 5.740055189169263, "elevation": -2341.812, "temperature": 88.56367613925761, "vertical_depth": 2366.812}, {"gradient": 5.718384972735163, "elevation": -2351.753, "temperature": 88.62052260427157, "vertical_depth": 2376.753}, {"gradient": 5.881220333979805, "elevation": -2361.694, "temperature": 88.67898781561166, "vertical_depth": 2386.694}, {"gradient": 5.859644397870965, "elevation": -2371.635, "temperature": 88.7372385405709, "vertical_depth": 2396.635}, {"gradient": 5.695310256053999, "elevation": -2381.576, "temperature": 88.79385561982633, "vertical_depth": 2406.576}, {"gradient": 5.671493976060684, "elevation": -2391.517, "temperature": 88.85023594144235, "vertical_depth": 2416.517}, {"gradient": 5.837410873432313, "elevation": -2401.457, "temperature": 88.90825980552427, "vertical_depth": 2426.457}, {"gradient": 5.647152003915259, "elevation": -2411.398, "temperature": 88.96439814359519, "vertical_depth": 2436.398}, {"gradient": 5.813117179218314, "elevation": -2421.339, "temperature": 89.0221863414738, "vertical_depth": 2446.339}, {"gradient": 5.788875308830971, "elevation": -2431.28, "temperature": 89.07973355091889, "vertical_depth": 2456.28}, {"gradient": 5.622485844575074, "elevation": -2441.221, "temperature": 89.13562668269981, "vertical_depth": 2466.221}, {"gradient": 5.597630017043742, "elevation": -2451.162, "temperature": 89.19127272269924, "vertical_depth": 2476.162}, {"gradient": 5.764339826306373, "elevation": -2461.103, "temperature": 89.24857602491255, "vertical_depth": 2486.103}, {"gradient": 5.739617774852624, "elevation": -2471.044, "temperature": 89.30563356521236, "vertical_depth": 2496.044}, {"gradient": 5.572645152120892, "elevation": -2480.985, "temperature": 89.3610312306696, "vertical_depth": 2505.985}, {"gradient": 5.504888971423887, "elevation": -2490.926, "temperature": 89.41575533193452, "vertical_depth": 2515.926}, {"gradient": 5.676815940693821, "elevation": -2500.867, "temperature": 89.47218855920096, "vertical_depth": 2525.867}, {"gradient": 5.566732367925078, "elevation": -2510.808, "temperature": 89.5275274456705, "vertical_depth": 2535.808}, {"gradient": 5.389712441002965, "elevation": -2520.748, "temperature": 89.58110118733407, "vertical_depth": 2545.748}, {"gradient": 5.532576298225389, "elevation": -2530.689, "temperature": 89.63610052831473, "vertical_depth": 2555.689}, {"gradient": 5.358844665236573, "elevation": -2540.63, "temperature": 89.68937280313185, "vertical_depth": 2565.63}, {"gradient": 5.330805698350372, "elevation": -2550.571, "temperature": 89.74236634257915, "vertical_depth": 2575.571}, {"gradient": 5.502493416077641, "elevation": -2560.512, "temperature": 89.79706662962838, "vertical_depth": 2585.512}, {"gradient": 5.474647020536585, "elevation": -2570.453, "temperature": 89.85149009565953, "vertical_depth": 2595.453}, {"gradient": 5.304011963376459, "elevation": -2580.394, "temperature": 89.90421727858745, "vertical_depth": 2605.394}, {"gradient": 5.277887898152485, "elevation": -2590.335, "temperature": 89.95668476218299, "vertical_depth": 2615.335}, {"gradient": 5.448022957232604, "elevation": -2600.276, "temperature": 90.01084355840084, "vertical_depth": 2625.276}, {"gradient": 5.252111720015739, "elevation": -2610.217, "temperature": 90.06305480100951, "vertical_depth": 2635.217}, {"gradient": 5.422054113368115, "elevation": -2620.158, "temperature": 90.1169554409505, "vertical_depth": 2645.158}, {"gradient": 5.396425063845257, "elevation": -2630.099, "temperature": 90.17060130251019, "vertical_depth": 2655.099}, {"gradient": 5.227030232930732, "elevation": -2640.039, "temperature": 90.22255798302552, "vertical_depth": 2665.039}, {"gradient": 5.188343434930549, "elevation": -2649.98, "temperature": 90.27413530511217, "vertical_depth": 2674.98}, {"gradient": 5.35974156508721, "elevation": -2659.921, "temperature": 90.3274164960107, "vertical_depth": 2684.921}, {"gradient": 5.044277960068028, "elevation": -2669.862, "temperature": 90.37756166321174, "vertical_depth": 2694.862}, {"gradient": 5.225877796682715, "elevation": -2679.803, "temperature": 90.42951211438856, "vertical_depth": 2704.803}, {"gradient": 5.189853440211437, "elevation": -2689.744, "temperature": 90.4811044474377, "vertical_depth": 2714.744}, {"gradient": 5.012725409012132, "elevation": -2699.685, "temperature": 90.53093595072869, "vertical_depth": 2724.685}, {"gradient": 5.158567650825616, "elevation": -2709.626, "temperature": 90.58221727174555, "vertical_depth": 2734.626}, {"gradient": 4.9838358328143695, "elevation": -2719.567, "temperature": 90.63176158375956, "vertical_depth": 2744.567}, {"gradient": 4.956402400005107, "elevation": -2729.508, "temperature": 90.681033180018, "vertical_depth": 2754.508}, {"gradient": 5.129892094256908, "elevation": -2739.449, "temperature": 90.73202943732701, "vertical_depth": 2764.449}, {"gradient": 4.9297525388692724, "elevation": -2749.39, "temperature": 90.78103610731591, "vertical_depth": 2774.39}, {"gradient": 5.103153299463859, "elevation": -2759.33, "temperature": 90.83176145111258, "vertical_depth": 2784.33}, {"gradient": 5.076219845886484, "elevation": -2769.271, "temperature": 90.88222415260054, "vertical_depth": 2794.271}, {"gradient": 4.903545373181655, "elevation": -2779.212, "temperature": 90.93097029715534, "vertical_depth": 2804.212}, {"gradient": 4.877524015318606, "elevation": -2789.153, "temperature": 90.97945776339162, "vertical_depth": 2814.153}, {"gradient": 5.050171015366375, "elevation": -2799.094, "temperature": 91.02966151345538, "vertical_depth": 2824.094}, {"gradient": 5.024118543854261, "elevation": -2809.035, "temperature": 91.07960627589983, "vertical_depth": 2834.035}, {"gradient": 4.851389468862388, "elevation": -2818.976, "temperature": 91.1278339386098, "vertical_depth": 2843.976}, {"gradient": 2150.9618221787387, "elevation": -2819.076, "temperature": 91.34293012082748, "vertical_depth": 2844.076}, {"gradient": -1.7658507937328667, "elevation": -2819.176, "temperature": 91.3427535357481, "vertical_depth": 2844.176}, {"gradient": 0.0819619751724011, "elevation": -2828.53, "temperature": 91.34352020806386, "vertical_depth": 2853.53}, {"gradient": -1.8245896763128358, "elevation": -2837.883, "temperature": 91.32645482082131, "vertical_depth": 2862.883}, {"gradient": 0.8116613771926593, "elevation": -2847.237, "temperature": 91.33404710134357, "vertical_depth": 2872.237}, {"gradient": -0.3525375464851989, "elevation": -2856.591, "temperature": 91.33074946513375, "vertical_depth": 2881.591}, {"gradient": 0.5978098540776146, "elevation": -2865.945, "temperature": 91.33634137850879, "vertical_depth": 2890.945}, {"gradient": 1.2791124366723132, "elevation": -2875.299, "temperature": 91.34830619624142, "vertical_depth": 2900.299}, {"gradient": -2490.3898319280324, "elevation": -2875.399, "temperature": 91.09926721304885, "vertical_depth": 2900.399}, {"gradient": 0.19026449673657522, "elevation": -2875.498, "temperature": 91.09928604923402, "vertical_depth": 2900.498}, {"gradient": 7.510234948429161, "elevation": -2883.604, "temperature": 91.16016401372599, "vertical_depth": 2908.604}, {"gradient": 9.781032400063298, "elevation": -2891.71, "temperature": 91.2394490623609, "vertical_depth": 2916.71}, {"gradient": 6.437373858752911, "elevation": -2899.815, "temperature": 91.2916239774861, "vertical_depth": 2924.815}, {"gradient": 7.908999287056622, "elevation": -2907.921, "temperature": 91.35573432570698, "vertical_depth": 2932.921}, {"gradient": 6.742158343965085, "elevation": -2916.026, "temperature": 91.41037951908481, "vertical_depth": 2941.026}, {"gradient": 5.763356763572712, "elevation": -2924.132, "temperature": 91.45709728901033, "vertical_depth": 2949.132}, {"gradient": 2160.1171245307887, "elevation": -2924.232, "temperature": 91.67310900146322, "vertical_depth": 2949.232}, {"gradient": 5.9892318598283385, "elevation": -2924.331, "temperature": 91.67370193541734, "vertical_depth": 2949.331}, {"gradient": -1.1423506294857713, "elevation": -2932.568, "temperature": 91.66429239328227, "vertical_depth": 2957.568}, {"gradient": 0.3625618755807172, "elevation": -2940.805, "temperature": 91.66727881545143, "vertical_depth": 2965.805}, {"gradient": -0.12129888776727943, "elevation": -2949.042, "temperature": 91.66627967651289, "vertical_depth": 2974.042}, {"gradient": 0.8343755150517898, "elevation": -2957.28, "temperature": 91.67315326200588, "vertical_depth": 2982.28}, {"gradient": 0.4998913220707177, "elevation": -2965.517, "temperature": 91.67727086682578, "vertical_depth": 2990.517}, {"gradient": 1.0757259885463903, "elevation": -2973.754, "temperature": 91.68613162179344, "vertical_depth": 2998.754}, {"gradient": -10.781097932111088, "elevation": -2976.355, "temperature": 91.65808998607201, "vertical_depth": 3001.355}, {"gradient": 10.392284586769305, "elevation": -2978.956, "temperature": 91.6851203182822, "vertical_depth": 3003.956}, {"gradient": -307.1724642862202, "elevation": -2979.056, "temperature": 91.65440307185361, "vertical_depth": 3004.056}, {"gradient": 3.5378415196906077, "elevation": -2979.156, "temperature": 91.65475685600558, "vertical_depth": 3004.156}, {"gradient": 4.32022935045948, "elevation": -2987.456, "temperature": 91.69061475961439, "vertical_depth": 3012.456}, {"gradient": 4.123857650138808, "elevation": -2995.756, "temperature": 91.72484277811054, "vertical_depth": 3020.756}, {"gradient": 4.099340283571008, "elevation": -3004.056, "temperature": 91.75886730246418, "vertical_depth": 3029.056}, {"gradient": 4.296020867003016, "elevation": -3012.356, "temperature": 91.79452427566031, "vertical_depth": 3037.356}, {"gradient": 4.075111224555836, "elevation": -3020.655, "temperature": 91.8283436237129, "vertical_depth": 3045.655}, {"gradient": 4.271482044346188, "elevation": -3028.955, "temperature": 91.86379692468097, "vertical_depth": 3053.955}, {"gradient": 4.246834621864606, "elevation": -3037.255, "temperature": 91.89904565204245, "vertical_depth": 3062.255}, {"gradient": 4.049822199627496, "elevation": -3045.555, "temperature": 91.93265917629935, "vertical_depth": 3070.555}, {"gradient": 28.91846677574388, "elevation": -3045.655, "temperature": 91.93555102297694, "vertical_depth": 3070.655}, {"gradient": 53.05343208083564, "elevation": -3045.755, "temperature": 91.94085636618502, "vertical_depth": 3070.755}, {"gradient": 3.978047147723418, "elevation": -3055.689, "temperature": 91.9803742865505, "vertical_depth": 3080.689}, {"gradient": 4.173633337147589, "elevation": -3065.623, "temperature": 92.02183516012173, "vertical_depth": 3090.623}, {"gradient": 4.144275956249279, "elevation": -3075.557, "temperature": 92.0630043974711, "vertical_depth": 3100.557}, {"gradient": 3.9484997045194024, "elevation": -3085.491, "temperature": 92.1022287935358, "vertical_depth": 3110.491}, {"gradient": 3.9188812684917087, "elevation": -3095.425, "temperature": 92.141158960057, "vertical_depth": 3120.425}, {"gradient": 4.114847532853301, "elevation": -3105.359, "temperature": 92.18203585544836, "vertical_depth": 3130.359}, {"gradient": 4.08536800518651, "elevation": -3115.293, "temperature": 92.22261990121189, "vertical_depth": 3140.293}, {"gradient": 3.8892018625015172, "elevation": -3125.227, "temperature": 92.26125523251397, "vertical_depth": 3150.227}, {"gradient": 3.8594510387691066, "elevation": -3135.161, "temperature": 92.29959501913311, "vertical_depth": 3160.161}, {"gradient": 4.055819600331148, "elevation": -3145.095, "temperature": 92.3398855310428, "vertical_depth": 3170.095}, {"gradient": 4.026174157596709, "elevation": -3155.029, "temperature": 92.37988154512436, "vertical_depth": 3180.029}, {"gradient": 3.8296157341806776, "elevation": -3164.963, "temperature": 92.41792494782771, "vertical_depth": 3189.963}, {"gradient": 3.9964575540663043, "elevation": -3174.897, "temperature": 92.45762575716981, "vertical_depth": 3199.897}, {"gradient": 3.7997094037861587, "elevation": -3184.831, "temperature": 92.49537207038702, "vertical_depth": 3209.831}, {"gradient": 3.9666698342459346, "elevation": -3194.765, "temperature": 92.53477696852042, "vertical_depth": 3219.765}, {"gradient": 3.769732082192858, "elevation": -3204.699, "temperature": 92.57222548702492, "vertical_depth": 3229.699}, {"gradient": 3.739683779460412, "elevation": -3214.633, "temperature": 92.60937550569008, "vertical_depth": 3239.633}, {"gradient": 3.936810992888432, "elevation": -3224.567, "temperature": 92.64848378609344, "vertical_depth": 3249.567}, {"gradient": 3.862050868593452, "elevation": -3234.501, "temperature": 92.68684939942204, "vertical_depth": 3259.501}, {"gradient": 3.6647290713627205, "elevation": -3244.434, "temperature": 92.72325115328789, "vertical_depth": 3269.434}, {"gradient": 3.545799038287338, "elevation": -3254.368, "temperature": 92.75847512093424, "vertical_depth": 3279.368}, {"gradient": 3.74442900057448, "elevation": -3264.302, "temperature": 92.79567227862594, "vertical_depth": 3289.302}, {"gradient": 3.5156790020497817, "elevation": -3274.236, "temperature": 92.8305970338323, "vertical_depth": 3299.236}, {"gradient": 3.714504465191005, "elevation": -3284.17, "temperature": 92.86749692118951, "vertical_depth": 3309.17}, {"gradient": 3.6845050464025824, "elevation": -3294.104, "temperature": 92.90409879432048, "vertical_depth": 3319.104}, {"gradient": 3.48548594933045, "elevation": -3304.038, "temperature": 92.93872361174112, "vertical_depth": 3329.038}, {"gradient": 3.455196111529575, "elevation": -3313.972, "temperature": 92.97304752991306, "vertical_depth": 3338.972}, {"gradient": 3.6543792998390487, "elevation": -3323.906, "temperature": 93.00935013387766, "vertical_depth": 3348.906}, {"gradient": 3.4248629929699046, "elevation": -3333.84, "temperature": 93.04337272284982, "vertical_depth": 3358.84}, {"gradient": 3.624232653957715, "elevation": -3343.774, "temperature": 93.07937585003424, "vertical_depth": 3368.774}, {"gradient": 3.594017094323004, "elevation": -3353.708, "temperature": 93.11507881584924, "vertical_depth": 3378.708}, {"gradient": 3.394461258693161, "elevation": -3363.642, "temperature": 93.1487993939931, "vertical_depth": 3388.642}, {"gradient": 3.327325613776282, "elevation": -3373.576, "temperature": 93.18185304664036, "vertical_depth": 3398.576}, {"gradient": 3.5273686031765266, "elevation": -3383.51, "temperature": 93.21689392634431, "vertical_depth": 3408.51}, {"gradient": 3.4417717047579184, "elevation": -3393.444, "temperature": 93.25108448645938, "vertical_depth": 3418.444}, {"gradient": 3.241085814705177, "elevation": -3403.378, "temperature": 93.28328143294266, "vertical_depth": 3428.378}, {"gradient": 3.2106868205570196, "elevation": -3413.312, "temperature": 93.31517639581807, "vertical_depth": 3438.312}, {"gradient": 3.41156991811652, "elevation": -3423.246, "temperature": 93.34906693138464, "vertical_depth": 3448.246}, {"gradient": 3.1802867352828663, "elevation": -3433.18, "temperature": 93.38065989981294, "vertical_depth": 3458.18}, {"gradient": 3.3814411252458485, "elevation": -3443.114, "temperature": 93.41425113595113, "vertical_depth": 3468.114}, {"gradient": 3.3510824793964105, "elevation": -3453.048, "temperature": 93.44754078930146, "vertical_depth": 3478.048}, {"gradient": 3.149730766499707, "elevation": -3462.982, "temperature": 93.47883021473586, "vertical_depth": 3487.982}, {"gradient": -805.3896012434556, "elevation": -3463.082, "temperature": 93.39829125461159, "vertical_depth": 3488.082}, {"gradient": -1570.2744592997035, "elevation": -3463.182, "temperature": 93.24126380868177, "vertical_depth": 3488.182}, {"gradient": 4.803807123801946, "elevation": -3473.132, "temperature": 93.2890616895636, "vertical_depth": 3498.132}, {"gradient": 4.536052886239636, "elevation": -3483.081, "temperature": 93.3341908797288, "vertical_depth": 3508.081}, {"gradient": 4.7628193650513815, "elevation": -3493.031, "temperature": 93.38158093241105, "vertical_depth": 3518.031}, {"gradient": 4.494232747572874, "elevation": -3502.981, "temperature": 93.4262985482494, "vertical_depth": 3527.981}, {"gradient": 4.452712517328172, "elevation": -3512.931, "temperature": 93.47060303779682, "vertical_depth": 3537.931}, {"gradient": 4.7221257719534515, "elevation": -3522.88, "temperature": 93.51758346710199, "vertical_depth": 3547.88}, {"gradient": 4.411748211010089, "elevation": -3532.828, "temperature": 93.56147153830511, "vertical_depth": 3557.828}, {"gradient": 4.68104610924856, "elevation": -3542.776, "temperature": 93.60803858499992, "vertical_depth": 3567.776}, {"gradient": 4.641124810090323, "elevation": -3552.718, "temperature": 93.65418064786184, "vertical_depth": 3577.718}, {"gradient": 4.37419424947612, "elevation": -3562.654, "temperature": 93.69764264192463, "vertical_depth": 3587.654}, {"gradient": 4.334727924151628, "elevation": -3572.579, "temperature": 93.74066481657184, "vertical_depth": 3597.579}, {"gradient": 4.6087545093942985, "elevation": -3582.495, "temperature": 93.78636522628699, "vertical_depth": 3607.495}, {"gradient": 4.569277691978361, "elevation": -3592.398, "temperature": 93.83161478327065, "vertical_depth": 3617.398}, {"gradient": 4.305281556715218, "elevation": -3602.287, "temperature": 93.87418971258501, "vertical_depth": 3627.287}, {"gradient": 4.2653820258157245, "elevation": -3612.162, "temperature": 93.91631036008994, "vertical_depth": 3637.162}, {"gradient": 4.543061373689554, "elevation": -3622.021, "temperature": 93.96110040217314, "vertical_depth": 3647.021}, {"gradient": 4.233237527463352, "elevation": -3631.862, "temperature": 94.00275969268091, "vertical_depth": 3656.862}, {"gradient": 4.512013559909879, "elevation": -3641.685, "temperature": 94.0470812018799, "vertical_depth": 3666.685}, {"gradient": 4.472549296911291, "elevation": -3651.488, "temperature": 94.09092560263753, "vertical_depth": 3676.488}, {"gradient": 4.210921876356649, "elevation": -3661.27, "temperature": 94.13211684043205, "vertical_depth": 3686.27}, {"gradient": 4.171866739611492, "elevation": -3671.03, "temperature": 94.17283425981066, "vertical_depth": 3696.03}, {"gradient": 4.454064684504704, "elevation": -3680.765, "temperature": 94.21619457951431, "vertical_depth": 3705.765}, {"gradient": 4.143938561830623, "elevation": -3690.475, "temperature": 94.25643222294968, "vertical_depth": 3715.475}, {"gradient": 4.427210290879694, "elevation": -3700.158, "temperature": 94.29930090019627, "vertical_depth": 3725.158}, {"gradient": 4.387942333375092, "elevation": -3709.814, "temperature": 94.34167087136734, "vertical_depth": 3734.814}, {"gradient": 4.129679088438754, "elevation": -3719.44, "temperature": 94.38142316227265, "vertical_depth": 3744.44}, {"gradient": 4.0915195870409, "elevation": -3729.036, "temperature": 94.4206853842299, "vertical_depth": 3754.036}, {"gradient": 4.377423037560384, "elevation": -3738.6, "temperature": 94.46255105816113, "vertical_depth": 3763.6}, {"gradient": 4.338624506909338, "elevation": -3748.132, "temperature": 94.50390682696099, "vertical_depth": 3773.132}, {"gradient": 4.081644734787195, "elevation": -3757.63, "temperature": 94.542674288652, "vertical_depth": 3782.63}, {"gradient": 4.044639592384658, "elevation": -3767.091, "temperature": 94.58094062383555, "vertical_depth": 3792.091}, {"gradient": 4.332799932826132, "elevation": -3776.516, "temperature": 94.62177726320243, "vertical_depth": 3801.516}, {"gradient": 4.022946931057744, "elevation": -3785.902, "temperature": 94.65953664309734, "vertical_depth": 3810.902}, {"gradient": 4.312580958926311, "elevation": -3795.249, "temperature": 94.69984633732042, "vertical_depth": 3820.249}, {"gradient": 4.236821472455937, "elevation": -3804.556, "temperature": 94.73927843476457, "vertical_depth": 3829.556}, {"gradient": 3.9826855646489854, "elevation": -3813.821, "temperature": 94.77617801652104, "vertical_depth": 3838.821}, {"gradient": 3.892816837459756, "elevation": -3823.042, "temperature": 94.81207368057926, "vertical_depth": 3848.042}, {"gradient": 4.185190822725466, "elevation": -3832.22, "temperature": 94.85048536195023, "vertical_depth": 3857.22}, {"gradient": 4.019243841340686, "elevation": -3841.351, "temperature": 94.88718507746552, "vertical_depth": 3866.351}, {"gradient": 3.7636051269973017, "elevation": -3850.436, "temperature": 94.92137743004429, "vertical_depth": 3875.436}, {"gradient": 3.7276162524100234, "elevation": -3859.473, "temperature": 94.95506389811732, "vertical_depth": 3884.473}, {"gradient": 4.024450099933529, "elevation": -3868.46, "temperature": 94.99123163116542, "vertical_depth": 3893.46}, {"gradient": 3.986926444883453, "elevation": -3877.397, "temperature": 95.02686279280334, "vertical_depth": 3902.397}, {"gradient": 3.7341159132295334, "elevation": -3886.282, "temperature": 95.06004041269239, "vertical_depth": 3911.282}, {"gradient": 3.971781915386773, "elevation": -3895.136, "temperature": 95.09520656977122, "vertical_depth": 3920.136}, {"gradient": 3.6962945315111466, "elevation": -3903.99, "temperature": 95.12793356155322, "vertical_depth": 3928.99}, {"gradient": 3.6532366316815033, "elevation": -3912.844, "temperature": 95.16027931869013, "vertical_depth": 3937.844}, {"gradient": 3.92950218704458, "elevation": -3921.697, "temperature": 95.19506720155204, "vertical_depth": 3946.697}, {"gradient": 3.8863231087401733, "elevation": -3930.551, "temperature": 95.22947670635682, "vertical_depth": 3955.551}, {"gradient": 3.6105728029717206, "elevation": -3939.404, "temperature": 95.26144110738153, "vertical_depth": 3964.404}, {"gradient": 3.5670207299403955, "elevation": -3948.258, "temperature": 95.29302350892442, "vertical_depth": 3973.258}, {"gradient": 3.843544777979969, "elevation": -3957.112, "temperature": 95.32705425438866, "vertical_depth": 3982.112}, {"gradient": 3.8011083275642203, "elevation": -3965.965, "temperature": 95.36070546641258, "vertical_depth": 3990.965}, {"gradient": 3.523777481229603, "elevation": -3974.819, "temperature": 95.39190499223139, "vertical_depth": 3999.819}, {"gradient": 3.7576113027975815, "elevation": -3983.673, "temperature": 95.42517488270636, "vertical_depth": 4008.673}, {"gradient": 3.4807721860414715, "elevation": -3992.526, "temperature": 95.45599015886938, "vertical_depth": 4017.526}, {"gradient": 3.7144382417580495, "elevation": -4001.38, "temperature": 95.48887779506191, "vertical_depth": 4026.38}, {"gradient": 3.4368769594637554, "elevation": -4010.234, "temperature": 95.519307903661, "vertical_depth": 4035.234}, {"gradient": 3.6715745783116693, "elevation": -4019.087, "temperature": 95.5518123534028, "vertical_depth": 4044.087}, {"gradient": 3.393271367868606, "elevation": -4027.941, "temperature": 95.5818563780939, "vertical_depth": 4052.941}, {"gradient": 3.349912470210295, "elevation": -4036.794, "temperature": 95.61151315319267, "vertical_depth": 4061.794}, {"gradient": 3.627719985577107, "elevation": -4045.648, "temperature": 95.64363298594498, "vertical_depth": 4070.648}, {"gradient": 3.305717964133103, "elevation": -4054.502, "temperature": 95.67290181279941, "vertical_depth": 4079.502}, {"gradient": 3.5846222293827723, "elevation": -4063.355, "temperature": 95.70463647339614, "vertical_depth": 4088.355}, {"gradient": 3.540650844152438, "elevation": -4072.209, "temperature": 95.73598539597026, "vertical_depth": 4097.209}, {"gradient": 3.2618201961771263, "elevation": -4081.063, "temperature": 95.76486555198721, "vertical_depth": 4106.063}, {"gradient": 3.2181946276039626, "elevation": -4089.916, "temperature": 95.79335622902539, "vertical_depth": 4114.916}, {"gradient": 3.4970049785647, "elevation": -4098.77, "temperature": 95.8243187111056, "vertical_depth": 4123.77}, {"gradient": 3.174071719363351, "elevation": -4107.623, "temperature": 95.85241876803713, "vertical_depth": 4132.623}, {"gradient": 3.453204821339374, "elevation": -4116.477, "temperature": 95.88299344352527, "vertical_depth": 4141.477}, {"gradient": 3.4094315910226087, "elevation": -4125.331, "temperature": 95.91318055083218, "vertical_depth": 4150.331}, {"gradient": 3.129914189518362, "elevation": -4134.184, "temperature": 95.94088968115199, "vertical_depth": 4159.184}, {"gradient": 3.08532343785976, "elevation": -4143.038, "temperature": 95.9682071348708, "vertical_depth": 4168.038}, {"gradient": 3.3656062695418933, "elevation": -4151.892, "temperature": 95.99800621278132, "vertical_depth": 4176.892}, {"gradient": 3.041230845607337, "elevation": -4160.745, "temperature": 96.02493022945748, "vertical_depth": 4185.745}, {"gradient": 3.3214969829037884, "elevation": -4169.599, "temperature": 96.05433876374411, "vertical_depth": 4194.599}, {"gradient": 3.27723969516692, "elevation": -4178.453, "temperature": 96.08335544400512, "vertical_depth": 4203.453}, {"gradient": 2.9966654722008794, "elevation": -4187.306, "temperature": 96.10988492343051, "vertical_depth": 4212.306}, {"gradient": 3.232906368141438, "elevation": -4196.16, "temperature": 96.13850907641404, "vertical_depth": 4221.16}, {"gradient": 2.9520138299775502, "elevation": -4205.013, "temperature": 96.16464325485083, "vertical_depth": 4230.013}, {"gradient": 3.183901643503325, "elevation": -4213.867, "temperature": 96.19283352000241, "vertical_depth": 4238.867}, {"gradient": 2.9023090482661744, "elevation": -4222.721, "temperature": 96.21853056431576, "vertical_depth": 4247.721}, {"gradient": 2.7847566956714234, "elevation": -4231.574, "temperature": 96.24318401534254, "vertical_depth": 4256.574}, {"gradient": 3.0671526424166315, "elevation": -4240.428, "temperature": 96.2703405848385, "vertical_depth": 4265.428}, {"gradient": 3.0225612661589407, "elevation": -4249.282, "temperature": 96.29710234228907, "vertical_depth": 4274.282}, {"gradient": 2.7398697058477626, "elevation": -4258.135, "temperature": 96.32135840879494, "vertical_depth": 4283.135}, {"gradient": 2.694575843162993, "elevation": -4266.989, "temperature": 96.3452161833103, "vertical_depth": 4291.989}, {"gradient": 2.9781978036010415, "elevation": -4275.842, "temperature": 96.37158216846558, "vertical_depth": 4300.842}, {"gradient": 2.6494923149987684, "elevation": -4284.696, "temperature": 96.39504077342258, "vertical_depth": 4309.696}, {"gradient": 2.933058906230866, "elevation": -4293.55, "temperature": 96.42101007697835, "vertical_depth": 4318.55}, {"gradient": 2.888480205703598, "elevation": -4302.403, "temperature": 96.44658179223944, "vertical_depth": 4327.403}, {"gradient": 2.604310135210056, "elevation": -4311.257, "temperature": 96.46964035417659, "vertical_depth": 4336.257}, {"gradient": 2.8431794637414445, "elevation": -4320.111, "temperature": 96.49481386514856, "vertical_depth": 4345.111}, {"gradient": 2.5593354941211373, "elevation": -4328.964, "temperature": 96.51747166227801, "vertical_depth": 4353.964}, {"gradient": 2.5136765798057947, "elevation": -4337.818, "temperature": 96.53972775471561, "vertical_depth": 4362.818}, {"gradient": 2.798090390526028, "elevation": -4346.672, "temperature": 96.56450204703333, "vertical_depth": 4371.672}, {"gradient": 2.7532432317822084, "elevation": -4355.525, "temperature": 96.5888765093643, "vertical_depth": 4380.525}, {"gradient": 2.468225263891136, "elevation": -4364.379, "temperature": 96.61073017585079, "vertical_depth": 4389.379}, {"gradient": 2.422918262161577, "elevation": -4373.232, "temperature": 96.6321802712257, "vertical_depth": 4398.232}, {"gradient": 2.7076129046860666, "elevation": -4382.086, "temperature": 96.6561534758838, "vertical_depth": 4407.086}, {"gradient": 2.662188030315513, "elevation": -4390.94, "temperature": 96.67972448870421, "vertical_depth": 4415.94}, {"gradient": 2.37723404010736, "elevation": -4399.793, "temperature": 96.70077014166128, "vertical_depth": 4424.793}, {"gradient": 2.3311913134915665, "elevation": -4408.647, "temperature": 96.72141050955094, "vertical_depth": 4433.647}, {"gradient": 2.616662994899982, "elevation": -4417.501, "temperature": 96.74457844370778, "vertical_depth": 4442.501}, {"gradient": 2.5713285508088304, "elevation": -4426.354, "temperature": 96.76734241536809, "vertical_depth": 4451.354}, {"gradient": 2.285322516306847, "elevation": -4435.208, "temperature": 96.78757666092747, "vertical_depth": 4460.208}, {"gradient": 2.239626167822584, "elevation": -4444.061, "temperature": 96.8074040713912, "vertical_depth": 4469.061}, {"gradient": 2.5253403551829487, "elevation": -4452.915, "temperature": 96.829763434896, "vertical_depth": 4477.915}, {"gradient": 2.1933030394608064, "elevation": -4461.769, "temperature": 96.84918294000738, "vertical_depth": 4486.769}, {"gradient": 2.4797711650832475, "elevation": -4470.622, "temperature": 96.87113635413186, "vertical_depth": 4495.622}, {"gradient": 2.333049099305554, "elevation": -4479.476, "temperature": 96.89179317085711, "vertical_depth": 4504.476}, {"gradient": 2.0454592160679166, "elevation": -4488.33, "temperature": 96.90990366675618, "vertical_depth": 4513.33}, {"gradient": 1.9920863852125317, "elevation": -4497.183, "temperature": 96.92753960752447, "vertical_depth": 4522.183}, {"gradient": 2.2797820500186123, "elevation": -4506.037, "temperature": 96.94772479779533, "vertical_depth": 4531.037}, {"gradient": 1.945917969741921, "elevation": -4514.891, "temperature": 96.96495395549942, "vertical_depth": 4539.891}, {"gradient": 2.234295204206007, "elevation": -4523.744, "temperature": 96.98473417094226, "vertical_depth": 4548.744}, {"gradient": 2.1882103067301863, "elevation": -4532.598, "temperature": 97.00410858499805, "vertical_depth": 4557.598}, {"gradient": 1.9001029279104695, "elevation": -4541.451, "temperature": 97.02093019621884, "vertical_depth": 4566.451}, {"gradient": 1.8538072734933293, "elevation": -4550.305, "temperature": 97.03734380581835, "vertical_depth": 4575.305}, {"gradient": 2.14235037521203, "elevation": -4559.159, "temperature": 97.05631217604048, "vertical_depth": 4584.159}, {"gradient": 2.0967728870967104, "elevation": -4568.012, "temperature": 97.07487490640995, "vertical_depth": 4593.012}, {"gradient": 1.8077070190104527, "elevation": -4576.866, "temperature": 97.09088034435626, "vertical_depth": 4601.866}, {"gradient": 2.050400116007787, "elevation": -4585.72, "temperature": 97.1090345869834, "vertical_depth": 4610.72}, {"gradient": 1.761597988630186, "elevation": -4594.573, "temperature": 97.12463001397674, "vertical_depth": 4619.573}, {"gradient": 2.004164970204655, "elevation": -4603.427, "temperature": 97.14237489062293, "vertical_depth": 4628.427}, {"gradient": 1.7151984649744174, "elevation": -4612.28, "temperature": 97.15755954263335, "vertical_depth": 4637.28}, {"gradient": 1.6685299131052485, "elevation": -4621.134, "temperature": 97.17233270648399, "vertical_depth": 4646.134}, {"gradient": 1.9578400565665532, "elevation": -4629.988, "temperature": 97.18966742234483, "vertical_depth": 4654.988}, {"gradient": 1.8650066113171246, "elevation": -4638.841, "temperature": 97.20617832587482, "vertical_depth": 4663.841}, {"gradient": 1.574821342016219, "elevation": -4647.695, "temperature": 97.22012179403703, "vertical_depth": 4672.695}, {"gradient": 1.5040718679238467, "elevation": -4656.549, "temperature": 97.23343884635563, "vertical_depth": 4681.549}, {"gradient": 1.794644078005592, "elevation": -4665.402, "temperature": 97.24932683037821, "vertical_depth": 4690.402}, {"gradient": 1.457409095693105, "elevation": -4674.256, "temperature": 97.26223073051148, "vertical_depth": 4699.256}, {"gradient": 1.7478948896894226, "elevation": -4683.11, "temperature": 97.27770659186478, "vertical_depth": 4708.11}, {"gradient": 1.701523701107523, "elevation": -4691.963, "temperature": 97.29277018119069, "vertical_depth": 4716.963}, {"gradient": 1.4107057052379204, "elevation": -4700.817, "temperature": 97.30526056950487, "vertical_depth": 4725.817}, {"gradient": 1.3640390240834412, "elevation": -4709.67, "temperature": 97.31733640698508, "vertical_depth": 4734.67}, {"gradient": 1.654604074161992, "elevation": -4718.524, "temperature": 97.33198627145771, "vertical_depth": 4743.524}, {"gradient": 1.3169873393164493, "elevation": -4727.378, "temperature": 97.34364687736002, "vertical_depth": 4752.378}, {"gradient": 1.607965802783761, "elevation": -4736.231, "temperature": 97.35788219861206, "vertical_depth": 4761.231}, {"gradient": 1.2700172073944764, "elevation": -4745.085, "temperature": 97.36912693096633, "vertical_depth": 4770.085}, {"gradient": 1.5608780466797194, "elevation": -4753.939, "temperature": 97.38294694519163, "vertical_depth": 4778.939}, {"gradient": 586.6874923045458, "elevation": -4754.027, "temperature": 97.43457544451428, "vertical_depth": 4779.027}, {"gradient": 1098.901996804909, "elevation": -4754.116, "temperature": 97.53237772222985, "vertical_depth": 4779.116}, {"gradient": 0.3088391110505159, "elevation": -4762.678, "temperature": 97.53502200269867, "vertical_depth": 4787.678}, {"gradient": 0.1661477105620825, "elevation": -4771.24, "temperature": 97.5364445593965, "vertical_depth": 4796.24}, {"gradient": 0.1448279202220497, "elevation": -4779.801, "temperature": 97.53768443122152, "vertical_depth": 4804.801}, {"gradient": 0.2875486368857308, "elevation": -4788.363, "temperature": 97.54014642265054, "vertical_depth": 4813.363}, {"gradient": 0.2662095084390652, "elevation": -4796.925, "temperature": 97.54242570846179, "vertical_depth": 4821.925}, {"gradient": 0.12344999586038133, "elevation": -4805.486, "temperature": 97.54348256387635, "vertical_depth": 4830.486}, {"gradient": 0.10203056068669522, "elevation": -4814.048, "temperature": 97.54435614953695, "vertical_depth": 4839.048}, {"gradient": 0.24483824874200247, "elevation": -4822.61, "temperature": 97.54645245462268, "vertical_depth": 4847.61}, {"gradient": 0.08060560560079515, "elevation": -4831.171, "temperature": 97.54714251921223, "vertical_depth": 4856.171}, {"gradient": 0.22343491577987531, "elevation": -4839.733, "temperature": 97.54905556896114, "vertical_depth": 4864.733}, {"gradient": 0.2019995618881978, "elevation": -4848.295, "temperature": 97.55078508921002, "vertical_depth": 4873.295}, {"gradient": 0.059139624900432314, "elevation": -4856.856, "temperature": 97.5512913835388, "vertical_depth": 4881.856}, {"gradient": 0.037640401078861234, "elevation": -4865.418, "temperature": 97.55161366065283, "vertical_depth": 4890.418}, {"gradient": 0.18055332009571146, "elevation": -4873.979, "temperature": 97.55315937762617, "vertical_depth": 4898.979}, {"gradient": 0.23330038693865734, "elevation": -4882.541, "temperature": 97.55515689553914, "vertical_depth": 4907.541}, {"gradient": 0.05292880552094787, "elevation": -4891.103, "temperature": 97.55561007197201, "vertical_depth": 4916.103}, {"gradient": 0.12836070843685232, "elevation": -4899.664, "temperature": 97.55670896799694, "vertical_depth": 4924.664}, {"gradient": -0.013182917203300209, "elevation": -4908.226, "temperature": 97.55659609585985, "vertical_depth": 4933.226}, {"gradient": 0.10701432608436633, "elevation": -4916.788, "temperature": 97.55751235251978, "vertical_depth": 4941.788}, {"gradient": -0.034533013928252435, "elevation": -4925.349, "temperature": 97.55721671538754, "vertical_depth": 4950.349}, {"gradient": -0.05590237440844826, "elevation": -4933.911, "temperature": 97.55673807925785, "vertical_depth": 4958.911}, {"gradient": 0.08565157314236407, "elevation": -4942.473, "temperature": 97.5574714280271, "vertical_depth": 4967.473}, {"gradient": -0.07731181315044959, "elevation": -4951.034, "temperature": 97.55680956159472, "vertical_depth": 4976.034}, {"gradient": 0.0642574368571901, "elevation": -4959.596, "temperature": 97.55735973376909, "vertical_depth": 4984.596}, {"gradient": 0.04283185798209025, "elevation": -4968.158, "temperature": 97.55772646013713, "vertical_depth": 4993.158}, {"gradient": -0.09874141532431407, "elevation": -4976.719, "temperature": 97.55688113488054, "vertical_depth": 5001.719}, {"gradient": -0.12019104498487516, "elevation": -4985.281, "temperature": 97.55585205915338, "vertical_depth": 5010.281}, {"gradient": 0.021360047309455874, "elevation": -4993.843, "temperature": 97.55603494387844, "vertical_depth": 5018.843}, {"gradient": -0.0001553452221302154, "elevation": -5002.404, "temperature": 97.556033613968, "vertical_depth": 5027.404}, {"gradient": -0.1416833322742567, "elevation": -5010.966, "temperature": 97.55482052127707, "vertical_depth": 5035.966}, {"gradient": -0.021669352341612335, "elevation": -5019.528, "temperature": 97.55463498828232, "vertical_depth": 5044.528}, {"gradient": -0.1632023927930585, "elevation": -5028.089, "temperature": 97.55323781259762, "vertical_depth": 5053.089}, {"gradient": -0.18470822765865674, "elevation": -5036.651, "temperature": 97.5516563407524, "vertical_depth": 5061.651}, {"gradient": -0.04321455380993702, "elevation": -5045.213, "temperature": 97.55128633774268, "vertical_depth": 5070.213}, {"gradient": -0.11585508751230322, "elevation": -5053.774, "temperature": 97.55029450233849, "vertical_depth": 5078.774}, {"gradient": -0.25756619923405616, "elevation": -5062.336, "temperature": 97.54808922054065, "vertical_depth": 5087.336}, {"gradient": -0.29458269800149467, "elevation": -5070.898, "temperature": 97.54556700348036, "vertical_depth": 5095.898}, {"gradient": -0.15283545311505375, "elevation": -5079.459, "temperature": 97.54425857916624, "vertical_depth": 5104.459}, {"gradient": -0.316122584636712, "elevation": -5088.021, "temperature": 97.54155193759658, "vertical_depth": 5113.021}, {"gradient": -0.1744050253744747, "elevation": -5096.583, "temperature": 97.54005868176932, "vertical_depth": 5121.583}, {"gradient": -0.19605065399092084, "elevation": -5105.144, "temperature": 97.53838029212051, "vertical_depth": 5130.144}, {"gradient": -0.3376870327475733, "elevation": -5113.706, "temperature": 97.53548901574612, "vertical_depth": 5138.706}, {"gradient": -0.35927576695354, "elevation": -5122.268, "temperature": 97.53241289662947, "vertical_depth": 5147.268}, {"gradient": -0.2177123815144946, "elevation": -5130.829, "temperature": 97.53054906093132, "vertical_depth": 5155.829}, {"gradient": -0.23938414304431152, "elevation": -5139.391, "temperature": 97.52849945389858, "vertical_depth": 5164.391}, {"gradient": -0.38093307635458956, "elevation": -5147.952, "temperature": 97.5252382858319, "vertical_depth": 5172.952}, {"gradient": -0.40252539999112036, "elevation": -5156.514, "temperature": 97.52179186335718, "vertical_depth": 5181.514}, {"gradient": -0.26112134080800703, "elevation": -5165.076, "temperature": 97.51955614243718, "vertical_depth": 5190.076}, {"gradient": -0.28293428061158427, "elevation": -5173.637, "temperature": 97.51713394206087, "vertical_depth": 5198.637}, {"gradient": -0.4241863010600888, "elevation": -5182.199, "temperature": 97.51350205895119, "vertical_depth": 5207.199}, {"gradient": -0.44587164915432703, "elevation": -5190.761, "temperature": 97.50968450589113, "vertical_depth": 5215.761}, {"gradient": -0.30476303920487424, "elevation": -5199.322, "temperature": 97.5070754295125, "vertical_depth": 5224.322}, {"gradient": 21.37642244957051, "elevation": -5199.411, "temperature": 97.50897793111051, "vertical_depth": 5224.411}, {"gradient": -1.1983845633395176, "elevation": -5199.5, "temperature": 97.50887127488437, "vertical_depth": 5224.5}, {"gradient": -3.728957066507588, "elevation": -5207.184, "temperature": 97.48021796878533, "vertical_depth": 5232.184}, {"gradient": -3.9193845725381657, "elevation": -5214.869, "temperature": 97.45009749834537, "vertical_depth": 5239.869}, {"gradient": -3.940135154732332, "elevation": -5222.553, "temperature": 97.41982149981641, "vertical_depth": 5247.553}, {"gradient": -3.7495266019353055, "elevation": -5230.237, "temperature": 97.39101013740714, "vertical_depth": 5255.237}, {"gradient": -2.469811109228789, "elevation": -5230.326, "temperature": 97.39079032421841, "vertical_depth": 5255.326}, {"gradient": -3.375179807174074, "elevation": -5230.415, "temperature": 97.39048993321558, "vertical_depth": 5255.415}, {"gradient": -3.7730630336681816, "elevation": -5238.284, "temperature": 97.36079970020364, "vertical_depth": 5263.284}, {"gradient": -3.9619906577889608, "elevation": -5246.154, "temperature": 97.32961883372684, "vertical_depth": 5271.154}, {"gradient": -3.983190187169556, "elevation": -5254.023, "temperature": 97.298275110144, "vertical_depth": 5279.023}, {"gradient": -3.794228503382126, "elevation": -5261.892, "temperature": 97.26841832605089, "vertical_depth": 5286.892}, {"gradient": -3.815051775551141, "elevation": -5269.762, "temperature": 97.2383938685773, "vertical_depth": 5294.762}, {"gradient": -4.00393006509886, "elevation": -5277.631, "temperature": 97.20688694289504, "vertical_depth": 5302.631}, {"gradient": -4.024216000468197, "elevation": -5285.501, "temperature": 97.17521636297136, "vertical_depth": 5310.501}, {"gradient": -3.837035779044334, "elevation": -5293.37, "temperature": 97.14502272842606, "vertical_depth": 5318.37}, {"gradient": -3.858807760221463, "elevation": -5301.239, "temperature": 97.11465777016087, "vertical_depth": 5326.239}, {"gradient": -4.045093513694118, "elevation": -5309.109, "temperature": 97.0828228842081, "vertical_depth": 5334.109}, {"gradient": -3.8810030288463557, "elevation": -5316.978, "temperature": 97.05228327137411, "vertical_depth": 5341.978}, {"gradient": -4.066621434172265, "elevation": -5324.847, "temperature": 97.02028302730861, "vertical_depth": 5349.847}, {"gradient": -4.087364820773633, "elevation": -5332.717, "temperature": 96.98811546616912, "vertical_depth": 5357.717}, {"gradient": -3.9039382914110545, "elevation": -5340.586, "temperature": 96.957395375754, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "Fluido (Prod Surg PA)", "calculated_from": "NPMo3LQLxK-5-f", "source": "GRADIENT", "_id": "e89WZRGvbj", "data": [{"gradient": 0, "_id": "nbg3jnQMKz", "elevation": -2047.0, "temperature": 85.20540246267387, "vertical_depth": 2072.0}, {"gradient": 0.5493605808193143, "_id": "EmbEJLqD75", "elevation": -2067.05, "temperature": 85.2164171423193, "vertical_depth": 2092.05}, {"gradient": 0.5499091185963222, "_id": "N9Y58yjoG2", "elevation": -2087.08, "temperature": 85.22743182196479, "vertical_depth": 2112.08}, {"gradient": 2.319950461357912, "_id": "eLj4d7yzZl", "elevation": -2087.18, "temperature": 85.22766381701092, "vertical_depth": 2112.18}, {"gradient": 2.3199504619157962, "_id": "Xbr2vn6l96", "elevation": -2087.28, "temperature": 85.22789581205711, "vertical_depth": 2112.28}, {"gradient": 2.6620348717617497, "_id": "wjPd7r9xzb", "elevation": -2115.037, "temperature": 85.3017859139926, "vertical_depth": 2140.037}, {"gradient": 2.662034871761706, "_id": "x38rzO6Er4", "elevation": -2142.794, "temperature": 85.3756760159281, "vertical_depth": 2167.794}, {"gradient": 6.283490708943904, "_id": "M7GbWE3Kby", "elevation": -2142.894, "temperature": 85.37630436499899, "vertical_depth": 2167.894}, {"gradient": 6.28349070891533, "_id": "g28Jlw0kpa", "elevation": -2142.994, "temperature": 85.37693271406988, "vertical_depth": 2167.994}, {"gradient": 6.802209163307297, "_id": "xPv742o6jG", "elevation": -2227.491, "temperature": 85.95169898174186, "vertical_depth": 2252.491}, {"gradient": 6.802128661885195, "_id": "o9rXbxJwrN", "elevation": -2311.989, "temperature": 86.52646524941383, "vertical_depth": 2336.989}, {"gradient": 6.320211904276083, "_id": "6Kk3won0Bz", "elevation": -2396.487, "temperature": 87.06051051490135, "vertical_depth": 2421.487}, {"gradient": 6.320211904274737, "_id": "aKlpOV4gDO", "elevation": -2480.985, "temperature": 87.59455578038876, "vertical_depth": 2505.985}, {"gradient": 6.041080531413839, "_id": "vmza5N8GAl", "elevation": -2565.483, "temperature": 88.10501500313217, "vertical_depth": 2590.483}, {"gradient": 6.041152026029418, "_id": "PYexnNlD1L", "elevation": -2649.98, "temperature": 88.61547422587557, "vertical_depth": 2674.98}, {"gradient": 5.654567054685562, "_id": "lVe5mq9Dlq", "elevation": -2734.478, "temperature": 89.0932738328624, "vertical_depth": 2759.478}, {"gradient": 5.654567054685562, "_id": "jNrV6wMPw3", "elevation": -2818.976, "temperature": 89.57107343984921, "vertical_depth": 2843.976}, {"gradient": 3.5191412177969315, "_id": "XeLX8QlGZG", "elevation": -2819.076, "temperature": 89.571425353971, "vertical_depth": 2844.076}, {"gradient": 3.5191412172284973, "_id": "gV813dmYMM", "elevation": -2819.176, "temperature": 89.57177726809272, "vertical_depth": 2844.176}, {"gradient": 3.1081898828507244, "_id": "BvMPKnLrAR", "elevation": -2847.237, "temperature": 89.65899618439539, "vertical_depth": 2872.237}, {"gradient": 3.108079121326882, "_id": "nv2a9kpdLm", "elevation": -2875.299, "temperature": 89.74621510069807, "vertical_depth": 2900.299}, {"gradient": 4.87502741976175, "_id": "EpPl2rgN13", "elevation": -2875.399, "temperature": 89.74670260344004, "vertical_depth": 2900.399}, {"gradient": 4.924270120959024, "_id": "qD6JYpvZ1Z", "elevation": -2875.498, "temperature": 89.74719010618202, "vertical_depth": 2900.498}, {"gradient": 5.203933401421314, "_id": "RwOXWkKY6v", "elevation": -2899.815, "temperature": 89.87373415470438, "vertical_depth": 2924.815}, {"gradient": 5.203933401423651, "_id": "eN06bJ9ZQJ", "elevation": -2924.132, "temperature": 90.0002782032268, "vertical_depth": 2949.132}, {"gradient": 3.3371731785822134, "_id": "w4DyWvKxRA", "elevation": -2924.232, "temperature": 90.00061192054466, "vertical_depth": 2949.232}, {"gradient": 3.370881999133552, "_id": "lwmplZ14Rl", "elevation": -2924.331, "temperature": 90.00094563786257, "vertical_depth": 2949.331}, {"gradient": 2.9283429211609446, "_id": "e0jLm2n3Gj", "elevation": -2951.644, "temperature": 90.08092746806824, "vertical_depth": 2976.644}, {"gradient": 2.928450139338385, "_id": "73oRjQJW6E", "elevation": -2978.956, "temperature": 90.16090929827385, "vertical_depth": 3003.956}, {"gradient": 4.686960637631898, "_id": "oDgrYmM11E", "elevation": -2979.056, "temperature": 90.16137799433761, "vertical_depth": 3004.056}, {"gradient": 4.686960637063464, "_id": "rGApJwx06x", "elevation": -2979.156, "temperature": 90.16184669040132, "vertical_depth": 3004.156}, {"gradient": 4.997453556352753, "_id": "E3PpJY1GB6", "elevation": -3012.356, "temperature": 90.32776214847223, "vertical_depth": 3037.356}, {"gradient": 4.9976040865981375, "_id": "BB9Ogy1ErY", "elevation": -3045.555, "temperature": 90.4936776065432, "vertical_depth": 3070.555}, {"gradient": 4.881731310870667, "_id": "lxdPZVG9aY", "elevation": -3045.655, "temperature": 90.49416577967429, "vertical_depth": 3070.655}, {"gradient": 4.881731310892866, "_id": "DrzGDAQXZG", "elevation": -3045.755, "temperature": 90.49465395280538, "vertical_depth": 3070.755}, {"gradient": 4.7263284402441235, "_id": "ggJ2W50l8r", "elevation": -3115.293, "temperature": 90.82331337988307, "vertical_depth": 3140.293}, {"gradient": 4.7263284402441235, "_id": "0xB4YpjlM6", "elevation": -3184.831, "temperature": 91.15197280696077, "vertical_depth": 3209.831}, {"gradient": 4.42299093807104, "_id": "E3OwmQLyak", "elevation": -3254.368, "temperature": 91.45953432782142, "vertical_depth": 3279.368}, {"gradient": 4.422927332690687, "_id": "EY4BmL9GQe", "elevation": -3323.906, "temperature": 91.76709584868206, "vertical_depth": 3348.906}, {"gradient": 4.033985024394795, "_id": "yQMVGlW4wg", "elevation": -3393.444, "temperature": 92.04761109930843, "vertical_depth": 3418.444}, {"gradient": 4.033985024394795, "_id": "WZXzQwy9eK", "elevation": -3462.982, "temperature": 92.32812634993479, "vertical_depth": 3487.982}, {"gradient": 5.18254491851638, "_id": "j2wrjX4GK5", "elevation": -3463.082, "temperature": 92.32864460442664, "vertical_depth": 3488.082}, {"gradient": 5.18254491851638, "_id": "akQ3Wy2RWO", "elevation": -3463.182, "temperature": 92.3291628589185, "vertical_depth": 3488.182}, {"gradient": 5.216240168518333, "_id": "RwYnjm5ajE", "elevation": -3551.476, "temperature": 92.78972556835765, "vertical_depth": 3576.476}, {"gradient": 5.248278838120591, "_id": "7x8AbBeMEW", "elevation": -3639.231, "temperature": 93.25028827779693, "vertical_depth": 3664.231}, {"gradient": 4.802034272724687, "_id": "5eK8DX6GV6", "elevation": -3725.441, "temperature": 93.66427165244852, "vertical_depth": 3750.441}, {"gradient": 4.942908011075335, "_id": "loyEBxJL3e", "elevation": -3809.194, "temperature": 94.07825502710011, "vertical_depth": 3834.194}, {"gradient": 4.539699652975102, "_id": "gVD6zWEQB0", "elevation": -3889.603, "temperature": 94.44328773649619, "vertical_depth": 3914.603}, {"gradient": 4.645600557372166, "_id": "ZqoJOQkeKZ", "elevation": -3968.179, "temperature": 94.80832044589226, "vertical_depth": 3993.179}, {"gradient": 4.0984819990148464, "_id": "JmV82wx4L4", "elevation": -4046.755, "temperature": 95.13036276744685, "vertical_depth": 4071.755}, {"gradient": 4.09848199901557, "_id": "evYG7E04l1", "elevation": -4125.331, "temperature": 95.4524050890015, "vertical_depth": 4150.331}, {"gradient": 3.5899067755397764, "_id": "1W5JGq6nLN", "elevation": -4203.907, "temperature": 95.73448560379632, "vertical_depth": 4228.907}, {"gradient": 3.5899067755405, "_id": "MzGyW0dl1A", "elevation": -4282.483, "temperature": 96.01656611859119, "vertical_depth": 4307.483}, {"gradient": 3.1180096959380057, "_id": "9VGdJ8AoRA", "elevation": -4361.059, "temperature": 96.26156684845921, "vertical_depth": 4386.059}, {"gradient": 3.118009695937282, "_id": "xR3z6eoWxv", "elevation": -4439.635, "temperature": 96.50656757832718, "vertical_depth": 4464.635}, {"gradient": 2.5280487912496556, "_id": "BvW96zKGmw", "elevation": -4518.211, "temperature": 96.70521154014841, "vertical_depth": 4543.211}, {"gradient": 2.5280487912489322, "_id": "l3WzPEVG9B", "elevation": -4596.787, "temperature": 96.90385550196959, "vertical_depth": 4621.787}, {"gradient": 1.9700567736650907, "_id": "MGmw2XrR63", "elevation": -4675.363, "temperature": 97.0586546830171, "vertical_depth": 4700.363}, {"gradient": 1.9700567736650907, "_id": "pB0zxwgND1", "elevation": -4753.939, "temperature": 97.2134538640646, "vertical_depth": 4778.939}, {"gradient": 0.8608051083275221, "_id": "XpvWEqNY4D", "elevation": -4754.027, "temperature": 97.21352961491414, "vertical_depth": 4779.027}, {"gradient": 0.8511331414549375, "_id": "GJmbqKGjJA", "elevation": -4754.116, "temperature": 97.21360536576373, "vertical_depth": 4779.116}, {"gradient": 0.5644587006214208, "_id": "5dAr9W1QEM", "elevation": -4828.317, "temperature": 97.25548876580854, "vertical_depth": 4853.317}, {"gradient": 0.5644587006206548, "_id": "PjJYEXvoXj", "elevation": -4902.518, "temperature": 97.29737216585329, "vertical_depth": 4927.518}, {"gradient": 0.3071168409826809, "_id": "GLQ0rKnwjN", "elevation": -4976.719, "temperature": 97.32016054257105, "vertical_depth": 5001.719}, {"gradient": 0.3071168409826809, "_id": "vm6R7NXpOw", "elevation": -5050.92, "temperature": 97.3429489192888, "vertical_depth": 5075.92}, {"gradient": 0.04733720680113796, "_id": "poXp79jbgJ", "elevation": -5125.121, "temperature": 97.34646138737065, "vertical_depth": 5150.121}, {"gradient": 0.04733720680113796, "_id": "WGd12xyqpd", "elevation": -5199.322, "temperature": 97.3499738554525, "vertical_depth": 5224.322}, {"gradient": -2.0811422272808477, "_id": "1zyxeW6k4X", "elevation": -5199.411, "temperature": 97.34978863379428, "vertical_depth": 5224.411}, {"gradient": -2.0811422272808477, "_id": "agmKqkJyRG", "elevation": -5199.5, "temperature": 97.34960341213605, "vertical_depth": 5224.5}, {"gradient": -2.51261885593088, "_id": "5y6rGPdvjk", "elevation": -5214.869, "temperature": 97.31098697293925, "vertical_depth": 5239.869}, {"gradient": -2.5127823527329465, "_id": "nOdawQ8JXx", "elevation": -5230.237, "temperature": 97.27237053374245, "vertical_depth": 5255.237}, {"gradient": -2.5343244265637805, "_id": "OVEMd9XqXk", "elevation": -5230.326, "temperature": 97.27214497886848, "vertical_depth": 5255.326}, {"gradient": -2.5343244265637805, "_id": "gAq2W0V9BJ", "elevation": -5230.415, "temperature": 97.27191942399452, "vertical_depth": 5255.415}, {"gradient": -2.6252517779710365, "_id": "Pmq3DwO5p2", "elevation": -5285.501, "temperature": 97.1273048045532, "vertical_depth": 5310.501}, {"gradient": -2.6252994361690094, "_id": "yvw6Le3WZO", "elevation": -5340.586, "temperature": 96.98269018511184, "vertical_depth": 5365.586}, {"gradient": 0.1976833237330901, "_id": "mPDYGxQKZd", "elevation": -5340.675, "temperature": 96.98270777892765, "vertical_depth": 5365.675}, {"gradient": 0.19768332437178024, "_id": "oV75egEwWB", "elevation": -5340.764, "temperature": 96.98272537274352, "vertical_depth": 5365.764}, {"gradient": 0.74841523710075, "_id": "QAQgxRjpda", "elevation": -5359.256, "temperature": 96.99656506730798, "vertical_depth": 5384.256}, {"gradient": 0.7484152371038606, "_id": "gyazXrwNNk", "elevation": -5377.748, "temperature": 97.01040476187251, "vertical_depth": 5402.748}, {"gradient": 0.7592743579560409, "_id": "PQZg7pjWWm", "elevation": -5377.837, "temperature": 97.01047233729037, "vertical_depth": 5402.837}, {"gradient": 0.7592743573251098, "_id": "KP3zmJMXXO", "elevation": -5377.926, "temperature": 97.01053991270817, "vertical_depth": 5402.926}, {"gradient": 0.3128015037126342, "_id": "7K6Zv4dPbV", "elevation": -5460.323, "temperature": 97.03631381820958, "vertical_depth": 5485.323}, {"gradient": 0.3128015037119443, "_id": "0X0bLWG957", "elevation": -5542.72, "temperature": 97.06208772371093, "vertical_depth": 5567.72}, {"gradient": -0.41194399075162363, "_id": "2kvorbP7yE", "elevation": -5625.117, "temperature": 97.02814477470497, "vertical_depth": 5650.117}, {"gradient": -0.4119439907509338, "_id": "Ge3rgpQaL3", "elevation": -5707.514, "temperature": 96.99420182569907, "vertical_depth": 5732.514}]}, {"is_default": false, "name": "Anular A (Prod Surg PA)", "calculated_from": "NPMo3LQLxK-5-a", "source": "GRADIENT", "_id": "AMQX5rOwX0", "data": [{"gradient": 0, "_id": "KDLaMNqY37", "elevation": -2047.0, "temperature": 82.96920134106762, "vertical_depth": 2072.0}, {"gradient": 19.307835473738038, "_id": "V2bM8B0WZ4", "elevation": -2067.05, "temperature": 83.35632344231607, "vertical_depth": 2092.05}, {"gradient": 6.581801705081409, "_id": "zPElW48gXK", "elevation": -2087.08, "temperature": 83.48815693046885, "vertical_depth": 2112.08}, {"gradient": -4706.551293380432, "_id": "ewRp6O08Ry", "elevation": -2087.18, "temperature": 83.01750180113123, "vertical_depth": 2112.18}, {"gradient": 1051.9516696281628, "_id": "yMarbRwVaR", "elevation": -2087.28, "temperature": 83.12269696809443, "vertical_depth": 2112.28}, {"gradient": 2.812320899987219, "_id": "l058pVbDaO", "elevation": -2115.037, "temperature": 83.20075855931537, "vertical_depth": 2140.037}, {"gradient": 3.5845765854002773, "_id": "5A8j5mR3AO", "elevation": -2142.794, "temperature": 83.30025565159633, "vertical_depth": 2167.794}, {"gradient": -22823.414764556288, "_id": "Brx32Bl8BP", "elevation": -2142.894, "temperature": 81.01791417514278, "vertical_depth": 2167.894}, {"gradient": -4414.306182501235, "_id": "QNBD35P85M", "elevation": -2142.994, "temperature": 80.57648355689105, "vertical_depth": 2167.994}, {"gradient": 7.171949355058954, "_id": "2PE0ZrqQyq", "elevation": -2227.491, "temperature": 81.18249176154546, "vertical_depth": 2252.491}, {"gradient": 8.6878652791695, "_id": "PXAR8Bz6ex", "elevation": -2311.989, "temperature": 81.91659900190473, "vertical_depth": 2336.989}, {"gradient": 6.694901567648371, "_id": "NgZ803qog8", "elevation": -2396.487, "temperature": 82.48230479456788, "vertical_depth": 2421.487}, {"gradient": 8.24221240704656, "_id": "vm6GjdwPkb", "elevation": -2480.985, "temperature": 83.1787552585385, "vertical_depth": 2505.985}, {"gradient": 7.988229007362391, "_id": "m2MwNOQnXo", "elevation": -2565.483, "temperature": 83.85374463320261, "vertical_depth": 2590.483}, {"gradient": 6.423903610469408, "_id": "mzKdLj8aEO", "elevation": -2649.98, "temperature": 84.39654521657644, "vertical_depth": 2674.98}, {"gradient": 7.644668195241143, "_id": "RxvdNymkGo", "elevation": -2734.478, "temperature": 85.04250438973793, "vertical_depth": 2759.478}, {"gradient": 6.043021103357885, "_id": "qXJzxv17BV", "elevation": -2818.976, "temperature": 85.55312758692946, "vertical_depth": 2843.976}, {"gradient": 6642.756785974273, "_id": "bw3bBOMQMj", "elevation": -2819.076, "temperature": 86.21740326552629, "vertical_depth": 2844.076}, {"gradient": 5.404211998443683, "_id": "5Ox3nwa5br", "elevation": -2819.176, "temperature": 86.21794368672613, "vertical_depth": 2844.176}, {"gradient": 4.8838023135448365, "_id": "y13wAjrkG7", "elevation": -2847.237, "temperature": 86.35498806344651, "vertical_depth": 2872.237}, {"gradient": 3.5252835879885267, "_id": "gL8waOenGz", "elevation": -2875.299, "temperature": 86.45391457149265, "vertical_depth": 2900.299}, {"gradient": -8339.313505941473, "_id": "RMW4rVOyyA", "elevation": -2875.399, "temperature": 85.61998322089926, "vertical_depth": 2900.399}, {"gradient": -6.68071229517128, "_id": "529jKqpERa", "elevation": -2875.498, "temperature": 85.61932183038203, "vertical_depth": 2900.498}, {"gradient": -6.62288074061707, "_id": "Ln3DkOQb1v", "elevation": -2899.815, "temperature": 85.45827323941245, "vertical_depth": 2924.815}, {"gradient": -6.622880740610058, "_id": "qD9JOGNbNW", "elevation": -2924.132, "temperature": 85.29722464844303, "vertical_depth": 2949.132}, {"gradient": 8339.010431349916, "_id": "3Jm8wBxaGb", "elevation": -2924.232, "temperature": 86.13112569157727, "vertical_depth": 2949.232}, {"gradient": -6.680712295745456, "_id": "KkrqXLjlRq", "elevation": -2924.331, "temperature": 86.13046430105999, "vertical_depth": 2949.331}, {"gradient": -6.622864807576906, "_id": "rZbR4D9VaZ", "elevation": -2951.644, "temperature": 85.94957399457064, "vertical_depth": 2976.644}, {"gradient": -4.89238433346902, "_id": "MElGgWVo1v", "elevation": -2978.956, "temperature": 85.81595319365493, "vertical_depth": 3003.956}, {"gradient": -8824.93329743404, "_id": "B5yo984pm3", "elevation": -2979.056, "temperature": 84.93345986391233, "vertical_depth": 3004.056}, {"gradient": -6.613905173373144, "_id": "M25Rp46WOw", "elevation": -2979.156, "temperature": 84.932798473395, "vertical_depth": 3004.156}, {"gradient": -6.622869803790876, "_id": "qEmYBKJXkV", "elevation": -3012.356, "temperature": 84.71291919590914, "vertical_depth": 3037.356}, {"gradient": 4.595169902054646, "_id": "EbE5WQ0K7W", "elevation": -3045.555, "temperature": 84.86547424148745, "vertical_depth": 3070.555}, {"gradient": 17512.921495434126, "_id": "YrzY2MJb2O", "elevation": -3045.655, "temperature": 86.61676639103723, "vertical_depth": 3070.655}, {"gradient": 68.01981649863868, "_id": "k8DEOXx5v4", "elevation": -3045.755, "temperature": 86.62356837268709, "vertical_depth": 3070.755}, {"gradient": 5.129076844702358, "_id": "mWb6nBKOV8", "elevation": -3115.293, "temperature": 86.980234118314, "vertical_depth": 3140.293}, {"gradient": 6.920967487901624, "_id": "kXOELJ2moY", "elevation": -3184.831, "temperature": 87.4615043554877, "vertical_depth": 3209.831}, {"gradient": 6.666253039576739, "_id": "moPm4gZA98", "elevation": -3254.368, "temperature": 87.92505559310075, "vertical_depth": 3279.368}, {"gradient": 4.830877488689867, "_id": "027KnrVbq2", "elevation": -3323.906, "temperature": 88.26098515190927, "vertical_depth": 3348.906}, {"gradient": 4.448898273760734, "_id": "3PWzjrgRM3", "elevation": -3393.444, "temperature": 88.57035264007004, "vertical_depth": 3418.444}, {"gradient": 6.332961836095709, "_id": "D4lr3Nm728", "elevation": -3462.982, "temperature": 89.01073414022846, "vertical_depth": 3487.982}, {"gradient": -8600.24290523129, "_id": "YGdlrwLZok", "elevation": -3463.082, "temperature": 88.15070984970612, "vertical_depth": 3488.082}, {"gradient": -1630.7989128737343, "_id": "BR2oJeaxbE", "elevation": -3463.182, "temperature": 87.98762995841889, "vertical_depth": 3488.182}, {"gradient": 8.139453840226926, "_id": "4DkBlojAbx", "elevation": -3551.476, "temperature": 88.70629489578789, "vertical_depth": 3576.476}, {"gradient": 5.808867517242601, "_id": "2wjeqJbZe0", "elevation": -3639.231, "temperature": 89.21605206476352, "vertical_depth": 3664.231}, {"gradient": 5.361336661020171, "_id": "8m8qvQV3qJ", "elevation": -3725.441, "temperature": 89.67825289831006, "vertical_depth": 3750.441}, {"gradient": 7.99110896867052, "_id": "vqJ0nPQ4bY", "elevation": -3809.194, "temperature": 90.34753224776313, "vertical_depth": 3834.194}, {"gradient": 5.107452123489167, "_id": "pX7k9zNpBo", "elevation": -3889.603, "temperature": 90.75821736556077, "vertical_depth": 3914.603}, {"gradient": 7.770739889172021, "_id": "PzX2bNlRQ3", "elevation": -3968.179, "temperature": 91.36881102309235, "vertical_depth": 3993.179}, {"gradient": 7.300775212237372, "_id": "JgGNrZdXGb", "elevation": -4046.755, "temperature": 91.94247673616911, "vertical_depth": 4071.755}, {"gradient": 4.6841532253569556, "_id": "zY9b5o8g7o", "elevation": -4125.331, "temperature": 92.31053876000476, "vertical_depth": 4150.331}, {"gradient": 4.187015689008447, "_id": "wLzZYEO2e3", "elevation": -4203.907, "temperature": 92.63953770478429, "vertical_depth": 4228.907}, {"gradient": 6.918975485911363, "_id": "WoPz8avrX8", "elevation": -4282.483, "temperature": 93.18320312256526, "vertical_depth": 4307.483}, {"gradient": 6.595100864062689, "_id": "rRk4a70qPy", "elevation": -4361.059, "temperature": 93.70141976805985, "vertical_depth": 4386.059}, {"gradient": 3.7263568993067993, "_id": "Gn0l5xgME9", "elevation": -4439.635, "temperature": 93.99422198777978, "vertical_depth": 4464.635}, {"gradient": 6.187380571595317, "_id": "z7E35VkD2k", "elevation": -4518.211, "temperature": 94.48040160357345, "vertical_depth": 4543.211}, {"gradient": 3.148132231879602, "_id": "RW3Z20AdNO", "elevation": -4596.787, "temperature": 94.72776924182563, "vertical_depth": 4621.787}, {"gradient": 2.600637938679147, "_id": "Mq731JjeWp", "elevation": -4675.363, "temperature": 94.93211696849528, "vertical_depth": 4700.363}, {"gradient": 5.833669652297942, "_id": "DkAoJ3L2gM", "elevation": -4753.939, "temperature": 95.39050339509424, "vertical_depth": 4778.939}, {"gradient": 7899.766567412574, "_id": "d54wbQ3DEp", "elevation": -4754.027, "temperature": 96.08568285302448, "vertical_depth": 4779.027}, {"gradient": 1147.4949742236618, "_id": "yNBw7A6dV0", "elevation": -4754.116, "temperature": 96.18780990573032, "vertical_depth": 4779.116}, {"gradient": 0.8890598633555924, "_id": "Bbj4BRX0N0", "elevation": -4828.317, "temperature": 96.25377903665117, "vertical_depth": 4853.317}, {"gradient": 2.1737917765667523, "_id": "qQjbP3A7JR", "elevation": -4902.518, "temperature": 96.4150765602642, "vertical_depth": 4927.518}, {"gradient": 3.0259112293976753, "_id": "4jMRXpnz9y", "elevation": -4976.719, "temperature": 96.63960219939673, "vertical_depth": 5001.719}, {"gradient": 0.6232190068163841, "_id": "PXax7PRZ61", "elevation": -5050.92, "temperature": 96.68584567292152, "vertical_depth": 5075.92}, {"gradient": 1.2938107156966745, "_id": "k2X0K45Pq7", "elevation": -5125.121, "temperature": 96.78184772183693, "vertical_depth": 5150.121}, {"gradient": 0.8175911120560223, "_id": "AZ1go6Xz5q", "elevation": -5199.322, "temperature": 96.8425137999426, "vertical_depth": 5224.322}, {"gradient": 2228.4192220483806, "_id": "Eoy6xgvlG5", "elevation": -5199.411, "temperature": 97.04084311070477, "vertical_depth": 5224.411}, {"gradient": 0.36533064689304934, "_id": "D5Y9xPmy0N", "elevation": -5199.5, "temperature": 97.04087562513234, "vertical_depth": 5224.5}, {"gradient": 0.7601903673166159, "_id": "jyWR7jb1v7", "elevation": -5214.869, "temperature": 97.05255899088763, "vertical_depth": 5239.869}, {"gradient": 1.5950638274388613, "_id": "yX5lDk0mNG", "elevation": -5230.237, "temperature": 97.07707193178771, "vertical_depth": 5255.237}, {"gradient": 985.601451844473, "_id": "g7jzoe0DZX", "elevation": -5230.326, "temperature": 97.16479046100181, "vertical_depth": 5255.326}, {"gradient": 1.5925198162937462, "_id": "nJbLdBMj6X", "elevation": -5230.415, "temperature": 97.16493219526546, "vertical_depth": 5255.415}, {"gradient": -2.7297416210436802, "_id": "P3eEpjZB8G", "elevation": -5285.501, "temperature": 97.01456164832865, "vertical_depth": 5310.501}, {"gradient": -2.805452096254816, "_id": "v854RevXo6", "elevation": -5340.586, "temperature": 96.86002331960646, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "Fluido (Prod Surg PO)", "calculated_from": "7qWOQo3oG4-5-f", "source": "GRADIENT", "_id": "yy7JPD17lz", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 92.96312104950636, "vertical_depth": 2072.0}, {"gradient": -9.805230449708763, "elevation": -2067.05, "temperature": 92.7665261789897, "vertical_depth": 2092.05}, {"gradient": -9.815020994338898, "elevation": -2087.08, "temperature": 92.56993130847309, "vertical_depth": 2112.08}, {"gradient": -4.2882671118643785, "elevation": -2087.18, "temperature": 92.5695024817619, "vertical_depth": 2112.18}, {"gradient": -4.288267111844878, "elevation": -2087.28, "temperature": 92.56907365505072, "vertical_depth": 2112.28}, {"gradient": -3.2156525470974273, "elevation": -2115.037, "temperature": 92.47981678730093, "vertical_depth": 2140.037}, {"gradient": -3.2156525471014707, "elevation": -2142.794, "temperature": 92.39055991955104, "vertical_depth": 2167.794}, {"gradient": -0.4517843660782562, "elevation": -2142.894, "temperature": 92.39051474111443, "vertical_depth": 2167.894}, {"gradient": -0.45178436607620176, "elevation": -2142.994, "temperature": 92.39046956267782, "vertical_depth": 2167.994}, {"gradient": 3.7787061331438725, "elevation": -2227.491, "temperature": 92.70975889481008, "vertical_depth": 2252.491}, {"gradient": 3.778661413670983, "elevation": -2311.989, "temperature": 93.02904822694245, "vertical_depth": 2336.989}, {"gradient": 4.052471925390579, "elevation": -2396.487, "temperature": 93.3714739996941, "vertical_depth": 2421.487}, {"gradient": 4.052471925389233, "elevation": -2480.985, "temperature": 93.71389977244564, "vertical_depth": 2505.985}, {"gradient": 3.674874949257227, "elevation": -2565.483, "temperature": 94.02441935590798, "vertical_depth": 2590.483}, {"gradient": 3.6749184404456714, "elevation": -2649.98, "temperature": 94.33493893937032, "vertical_depth": 2674.98}, {"gradient": 3.3807399846277506, "elevation": -2734.478, "temperature": 94.6206047065914, "vertical_depth": 2759.478}, {"gradient": 3.380739984627078, "elevation": -2818.976, "temperature": 94.90627047381241, "vertical_depth": 2843.976}, {"gradient": -0.2224402317098997, "elevation": -2819.076, "temperature": 94.90624822978924, "vertical_depth": 2844.076}, {"gradient": -0.2224402317098997, "elevation": -2819.176, "temperature": 94.90622598576607, "vertical_depth": 2844.176}, {"gradient": -0.9528825329472658, "elevation": -2847.237, "temperature": 94.87948714900904, "vertical_depth": 2872.237}, {"gradient": -0.9528485766152314, "elevation": -2875.299, "temperature": 94.85274831225206, "vertical_depth": 2900.299}, {"gradient": 2.4853175500561386, "elevation": -2875.399, "temperature": 94.85299684400707, "vertical_depth": 2900.399}, {"gradient": 2.510421767727131, "elevation": -2875.498, "temperature": 94.85324537576207, "vertical_depth": 2900.498}, {"gradient": 3.099488344692861, "elevation": -2899.815, "temperature": 94.92861563383997, "vertical_depth": 2924.815}, {"gradient": 3.0994883446951986, "elevation": -2924.132, "temperature": 95.00398589191792, "vertical_depth": 2949.132}, {"gradient": -0.5589901996932521, "elevation": -2924.232, "temperature": 95.00392999289795, "vertical_depth": 2949.232}, {"gradient": -0.5646365653452929, "elevation": -2924.331, "temperature": 95.00387409387798, "vertical_depth": 2949.331}, {"gradient": -1.3023980735104965, "elevation": -2951.644, "temperature": 94.96830169529619, "vertical_depth": 2976.644}, {"gradient": -1.302445759440836, "elevation": -2978.956, "temperature": 94.93272929671434, "vertical_depth": 3003.956}, {"gradient": 2.202480849293536, "elevation": -2979.056, "temperature": 94.93294954479927, "vertical_depth": 3004.056}, {"gradient": 2.20248084986197, "elevation": -2979.156, "temperature": 94.93316979288426, "vertical_depth": 3004.156}, {"gradient": 2.8703800763015304, "elevation": -3012.356, "temperature": 95.02846641141747, "vertical_depth": 3037.356}, {"gradient": 2.8704665361370125, "elevation": -3045.555, "temperature": 95.12376302995068, "vertical_depth": 3070.555}, {"gradient": 2.7856620744058613, "elevation": -3045.655, "temperature": 95.12404159615812, "vertical_depth": 3070.655}, {"gradient": 2.785662074418529, "elevation": -3045.755, "temperature": 95.12432016236556, "vertical_depth": 3070.755}, {"gradient": 2.661151013811436, "elevation": -3115.293, "temperature": 95.30937128156398, "vertical_depth": 3140.293}, {"gradient": 2.661151013811436, "elevation": -3184.831, "temperature": 95.4944224007624, "vertical_depth": 3209.831}, {"gradient": 2.324899700877061, "elevation": -3254.368, "temperature": 95.65608895126229, "vertical_depth": 3279.368}, {"gradient": 2.3248662673638094, "elevation": -3323.906, "temperature": 95.81775550176224, "vertical_depth": 3348.906}, {"gradient": 2.0864765039412516, "elevation": -3393.444, "temperature": 95.9628449048933, "vertical_depth": 3418.444}, {"gradient": 2.0864765039412516, "elevation": -3462.982, "temperature": 96.10793430802437, "vertical_depth": 3487.982}, {"gradient": 2.9721762314265763, "elevation": -3463.082, "temperature": 96.10823152564751, "vertical_depth": 3488.082}, {"gradient": 2.9721762314265763, "elevation": -3463.182, "temperature": 96.10852874327065, "vertical_depth": 3488.182}, {"gradient": 3.0070385431482274, "elevation": -3551.476, "temperature": 96.37403220439938, "vertical_depth": 3576.476}, {"gradient": 3.0255080750816146, "elevation": -3639.231, "temperature": 96.63953566552817, "vertical_depth": 3664.231}, {"gradient": 2.591196283158828, "elevation": -3725.441, "temperature": 96.8629226970993, "vertical_depth": 3750.441}, {"gradient": 2.6672122977221244, "elevation": -3809.194, "temperature": 97.08630972867041, "vertical_depth": 3834.194}, {"gradient": 2.251848938777643, "elevation": -3889.603, "temperature": 97.26737864998859, "vertical_depth": 3914.603}, {"gradient": 2.3043794710627745, "elevation": -3968.179, "temperature": 97.44844757130682, "vertical_depth": 3993.179}, {"gradient": 1.8913652364962101, "elevation": -4046.755, "temperature": 97.59706348612974, "vertical_depth": 4071.755}, {"gradient": 1.8913652364954867, "elevation": -4125.331, "temperature": 97.74567940095261, "vertical_depth": 4150.331}, {"gradient": 1.5191125351957107, "elevation": -4203.907, "temperature": 97.86504518751815, "vertical_depth": 4228.907}, {"gradient": 1.5191125351964343, "elevation": -4282.483, "temperature": 97.98441097408374, "vertical_depth": 4307.483}, {"gradient": 1.1377873335316242, "elevation": -4361.059, "temperature": 98.07381375160332, "vertical_depth": 4386.059}, {"gradient": 1.1377873335323474, "elevation": -4439.635, "temperature": 98.16321652912296, "vertical_depth": 4464.635}, {"gradient": 0.6362017745965558, "elevation": -4518.211, "temperature": 98.21320671976366, "vertical_depth": 4543.211}, {"gradient": 0.6362017745958325, "elevation": -4596.787, "temperature": 98.2631969104043, "vertical_depth": 4621.787}, {"gradient": 0.2638716576828257, "elevation": -4675.363, "temperature": 98.28393088977839, "vertical_depth": 4700.363}, {"gradient": 0.2638716576828257, "elevation": -4753.939, "temperature": 98.30466486915248, "vertical_depth": 4778.939}, {"gradient": -0.657438709535172, "elevation": -4754.027, "temperature": 98.30460701454604, "vertical_depth": 4779.027}, {"gradient": -0.6500517577411322, "elevation": -4754.116, "temperature": 98.3045491599396, "vertical_depth": 4779.116}, {"gradient": -0.8622048403043548, "elevation": -4828.317, "temperature": 98.24057269858417, "vertical_depth": 4853.317}, {"gradient": -0.8622048403051209, "elevation": -4902.518, "temperature": 98.1765962372287, "vertical_depth": 4927.518}, {"gradient": -1.024424513276234, "elevation": -4976.719, "temperature": 98.10058291391908, "vertical_depth": 5001.719}, {"gradient": -1.024424513275468, "elevation": -5050.92, "temperature": 98.02456959060953, "vertical_depth": 5075.92}, {"gradient": -1.2239297108871998, "elevation": -5125.121, "temperature": 97.93375278213199, "vertical_depth": 5150.121}, {"gradient": -1.223929710887966, "elevation": -5199.322, "temperature": 97.84293597365439, "vertical_depth": 5224.322}, {"gradient": -5.3472588212626695, "elevation": -5199.411, "temperature": 97.8424600676193, "vertical_depth": 5224.411}, {"gradient": -5.3472588219013595, "elevation": -5199.5, "temperature": 97.84198416158415, "vertical_depth": 5224.5}, {"gradient": -6.176064216188671, "elevation": -5214.869, "temperature": 97.74706423064555, "vertical_depth": 5239.869}, {"gradient": -6.176466094390897, "elevation": -5230.237, "temperature": 97.65214429970695, "vertical_depth": 5255.237}, {"gradient": -6.184274936048851, "elevation": -5230.326, "temperature": 97.65159389923764, "vertical_depth": 5255.326}, {"gradient": -6.184274936048851, "elevation": -5230.415, "temperature": 97.65104349876833, "vertical_depth": 5255.415}, {"gradient": -6.253616400888133, "elevation": -5285.501, "temperature": 97.306556785709, "vertical_depth": 5310.501}, {"gradient": -6.253729927554234, "elevation": -5340.586, "temperature": 96.96207007264968, "vertical_depth": 5365.586}, {"gradient": -0.5499556117575011, "elevation": -5340.675, "temperature": 96.96202112660023, "vertical_depth": 5365.675}, {"gradient": -0.5499556123961913, "elevation": -5340.764, "temperature": 96.96197218055073, "vertical_depth": 5365.764}, {"gradient": 0.5797396384817186, "elevation": -5359.256, "temperature": 96.97269272594554, "vertical_depth": 5384.256}, {"gradient": 0.579739638478673, "elevation": -5377.748, "temperature": 96.98341327134028, "vertical_depth": 5402.748}, {"gradient": 0.6225528034899683, "elevation": -5377.837, "temperature": 96.9834686785398, "vertical_depth": 5402.837}, {"gradient": 0.6225528028576401, "elevation": -5377.926, "temperature": 96.98352408573925, "vertical_depth": 5402.926}, {"gradient": 0.2919869856658901, "elevation": -5460.323, "temperature": 97.00758293739716, "vertical_depth": 5485.323}, {"gradient": 0.2919869856652002, "elevation": -5542.72, "temperature": 97.03164178905502, "vertical_depth": 5567.72}, {"gradient": -0.22719251523690545, "elevation": -5625.117, "temperature": 97.01292180737704, "vertical_depth": 5650.117}, {"gradient": -0.22719251523690545, "elevation": -5707.514, "temperature": 96.99420182569907, "vertical_depth": 5732.514}]}, {"is_default": false, "name": "Anular A (Prod Surg PO)", "calculated_from": "7qWOQo3oG4-5-a", "source": "GRADIENT", "_id": "Y0vVqK9vL5", "data": [{"gradient": 0, "elevation": -2047.0, "temperature": 90.63574004365842, "vertical_depth": 2072.0}, {"gradient": 10.64176147343947, "elevation": -2067.05, "temperature": 90.84910736120088, "vertical_depth": 2092.05}, {"gradient": -3.0433146821922854, "elevation": -2087.08, "temperature": 90.78814976811657, "vertical_depth": 2112.08}, {"gradient": -5035.889084675237, "elevation": -2087.18, "temperature": 90.2845608596495, "vertical_depth": 2112.18}, {"gradient": 1181.3579359417415, "elevation": -2087.28, "temperature": 90.4026966532441, "vertical_depth": 2112.28}, {"gradient": -3.022929524215069, "elevation": -2115.037, "temperature": 90.31878919844047, "vertical_depth": 2140.037}, {"gradient": -2.116822338631792, "elevation": -2142.794, "temperature": 90.26003256078707, "vertical_depth": 2167.794}, {"gradient": -23563.542305153474, "elevation": -2142.894, "temperature": 87.90367833027386, "vertical_depth": 2167.894}, {"gradient": -4061.0904283397585, "elevation": -2142.994, "temperature": 87.49756928743841, "vertical_depth": 2167.994}, {"gradient": 4.161243265417131, "elevation": -2227.491, "temperature": 87.84918185963636, "vertical_depth": 2252.491}, {"gradient": 5.775036290446503, "elevation": -2311.989, "temperature": 88.33716087610651, "vertical_depth": 2336.989}, {"gradient": 4.394256637003298, "elevation": -2396.487, "temperature": 88.70846677342001, "vertical_depth": 2421.487}, {"gradient": 6.002376354050163, "elevation": -2480.985, "temperature": 89.21565557058454, "vertical_depth": 2505.985}, {"gradient": 5.6583601193920625, "elevation": -2565.483, "temperature": 89.69377568395294, "vertical_depth": 2590.483}, {"gradient": 4.021608230478156, "elevation": -2649.98, "temperature": 90.03358951460365, "vertical_depth": 2674.98}, {"gradient": 5.2132951646078265, "elevation": -2734.478, "temperature": 90.47410252942268, "vertical_depth": 2759.478}, {"gradient": 3.7419329989559373, "elevation": -2818.976, "temperature": 90.79028838396846, "vertical_depth": 2843.976}, {"gradient": 7112.712009353788, "elevation": -2819.076, "temperature": 91.50155958490319, "vertical_depth": 2844.076}, {"gradient": 1.554968339975453, "elevation": -2819.176, "temperature": 91.50171508173719, "vertical_depth": 2844.176}, {"gradient": 0.9667462403456396, "elevation": -2847.237, "temperature": 91.52884294798753, "vertical_depth": 2872.237}, {"gradient": -0.5523498129297117, "elevation": -2875.299, "temperature": 91.5133429075371, "vertical_depth": 2900.299}, {"gradient": -8902.729408937514, "elevation": -2875.399, "temperature": 90.62306996664415, "vertical_depth": 2900.399}, {"gradient": -10.130288000114549, "elevation": -2875.498, "temperature": 90.62206706813214, "vertical_depth": 2900.498}, {"gradient": -10.042595207837671, "elevation": -2899.815, "temperature": 90.37786128046315, "vertical_depth": 2924.815}, {"gradient": -10.042595207837671, "elevation": -2924.132, "temperature": 90.13365549279416, "vertical_depth": 2949.132}, {"gradient": 8894.758232369913, "elevation": -2924.232, "temperature": 91.02313131603034, "vertical_depth": 2949.232}, {"gradient": -10.130288000114549, "elevation": -2924.331, "temperature": 91.02212841751833, "vertical_depth": 2949.331}, {"gradient": -10.042571047800875, "elevation": -2951.644, "temperature": 90.74783567448975, "vertical_depth": 2976.644}, {"gradient": -8.131465563820003, "elevation": -2978.956, "temperature": 90.5257490870107, "vertical_depth": 3003.956}, {"gradient": -9436.877758105367, "elevation": -2979.056, "temperature": 89.58206131120102, "vertical_depth": 3004.056}, {"gradient": -10.02898512013874, "elevation": -2979.156, "temperature": 89.581058412689, "vertical_depth": 3004.156}, {"gradient": -10.042578623803767, "elevation": -3012.356, "temperature": 89.24764480237872, "vertical_depth": 3037.356}, {"gradient": 1.7370397571497098, "elevation": -3045.555, "temperature": 89.30531278527633, "vertical_depth": 3070.555}, {"gradient": 18584.724603030656, "elevation": -3045.655, "temperature": 91.16378524558615, "vertical_depth": 3070.655}, {"gradient": 59.6077793955461, "elevation": -3045.755, "temperature": 91.1697460235257, "vertical_depth": 3070.755}, {"gradient": 3.0240178642803044, "elevation": -3115.293, "temperature": 91.38003017777203, "vertical_depth": 3140.293}, {"gradient": 4.912418136645342, "elevation": -3184.831, "temperature": 91.72162991015807, "vertical_depth": 3209.831}, {"gradient": 4.625466344017499, "elevation": -3254.368, "temperature": 92.04327096332202, "vertical_depth": 3279.368}, {"gradient": 2.6927930294066798, "elevation": -3323.906, "temperature": 92.2305224050009, "vertical_depth": 3348.906}, {"gradient": 2.4593211376337587, "elevation": -3393.444, "temperature": 92.40153867826967, "vertical_depth": 3418.444}, {"gradient": 4.435192835228538, "elevation": -3462.982, "temperature": 92.7099531176458, "vertical_depth": 3487.982}, {"gradient": -8937.10158999471, "elevation": -3463.082, "temperature": 91.81624295864714, "vertical_depth": 3488.082}, {"gradient": -1502.537462951866, "elevation": -3463.182, "temperature": 91.66598921235209, "vertical_depth": 3488.182}, {"gradient": 6.042125017197883, "elevation": -3551.476, "temperature": 92.19947259862056, "vertical_depth": 3576.476}, {"gradient": 3.5393194712849816, "elevation": -3639.231, "temperature": 92.51006557882317, "vertical_depth": 3664.231}, {"gradient": 3.103964350662222, "elevation": -3725.441, "temperature": 92.77765834549376, "vertical_depth": 3750.441}, {"gradient": 5.85349496972944, "elevation": -3809.194, "temperature": 93.26790610969351, "vertical_depth": 3834.194}, {"gradient": 2.7746704414767502, "elevation": -3889.603, "temperature": 93.49101458522222, "vertical_depth": 3914.603}, {"gradient": 5.585697686504952, "elevation": -3968.179, "temperature": 93.92991636663703, "vertical_depth": 3993.179}, {"gradient": 5.251344825452623, "elevation": -4046.755, "temperature": 94.3425460376418, "vertical_depth": 4071.755}, {"gradient": 2.4293897567286176, "elevation": -4125.331, "temperature": 94.5334377671665, "vertical_depth": 4150.331}, {"gradient": 2.0666899314316027, "elevation": -4203.907, "temperature": 94.69582999521867, "vertical_depth": 4228.907}, {"gradient": 5.003305247428836, "elevation": -4282.483, "temperature": 95.08896970834064, "vertical_depth": 4307.483}, {"gradient": 4.7595338264202685, "elevation": -4361.059, "temperature": 95.46295483828544, "vertical_depth": 4386.059}, {"gradient": 1.694434575285327, "elevation": -4439.635, "temperature": 95.59609672947306, "vertical_depth": 4464.635}, {"gradient": 4.439072825582425, "elevation": -4518.211, "temperature": 95.94490131581603, "vertical_depth": 4543.211}, {"gradient": 1.2027598986825043, "elevation": -4596.787, "temperature": 96.0394093776149, "vertical_depth": 4621.787}, {"gradient": 0.8377647697593276, "elevation": -4675.363, "temperature": 96.10523758216351, "vertical_depth": 4700.363}, {"gradient": 4.2590508423398035, "elevation": -4753.939, "temperature": 96.4398967611512, "vertical_depth": 4778.939}, {"gradient": 8203.57454413622, "elevation": -4754.027, "temperature": 97.16181132103304, "vertical_depth": 4779.027}, {"gradient": 1050.118217754084, "elevation": -4754.116, "temperature": 97.2552718424131, "vertical_depth": 4779.116}, {"gradient": -0.5708881478889323, "elevation": -4828.317, "temperature": 97.21291137095159, "vertical_depth": 4853.317}, {"gradient": 0.7438143915853496, "elevation": -4902.518, "temperature": 97.26810314262161, "vertical_depth": 4927.518}, {"gradient": 1.7540887698411667, "elevation": -4976.719, "temperature": 97.3982582834326, "vertical_depth": 5001.719}, {"gradient": -0.7411448194888267, "elevation": -5050.92, "temperature": 97.3432645966817, "vertical_depth": 5075.92}, {"gradient": -0.3821800847079503, "elevation": -5125.121, "temperature": 97.31490645221629, "vertical_depth": 5150.121}, {"gradient": -0.6676626277335584, "elevation": -5199.322, "temperature": 97.26536521757583, "vertical_depth": 5224.322}, {"gradient": 2596.5543518336203, "elevation": -5199.411, "temperature": 97.49645855488887, "vertical_depth": 5224.411}, {"gradient": -0.9369830914453883, "elevation": -5199.5, "temperature": 97.49637516339374, "vertical_depth": 5224.5}, {"gradient": -1.151981734611547, "elevation": -5214.869, "temperature": 97.47867035611449, "vertical_depth": 5239.869}, {"gradient": -1.6042186725804162, "elevation": -5230.237, "temperature": 97.45401672355428, "vertical_depth": 5255.237}, {"gradient": 1061.5333239880326, "elevation": -5230.326, "temperature": 97.54849318938915, "vertical_depth": 5255.326}, {"gradient": -1.601660059852032, "elevation": -5230.415, "temperature": 97.54835064164382, "vertical_depth": 5255.415}, {"gradient": -6.367135777046465, "elevation": -5285.501, "temperature": 97.19761060022944, "vertical_depth": 5310.501}, {"gradient": -6.450579979852736, "elevation": -5340.586, "temperature": 96.84228040203925, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "Fluido (Prod GL PA)", "calculated_from": "Daq40oro2q-5-f", "source": "GRADIENT", "_id": "RaDpY5e61Q", "data": [{"gradient": 0, "_id": "9ByrDoW4Zq", "elevation": -2047.0, "temperature": 84.363602849612, "vertical_depth": 2072.0}, {"gradient": 17.205882767822807, "_id": "najqb09ky6", "elevation": -2053.685, "temperature": 84.47862417591489, "vertical_depth": 2078.685}, {"gradient": 17.20845695735308, "_id": "NQqV31lM0e", "elevation": -2060.369, "temperature": 84.59364550221784, "vertical_depth": 2085.369}, {"gradient": 13.83427984805008, "_id": "vxPAD0amL7", "elevation": -2067.05, "temperature": 84.68607232588266, "vertical_depth": 2092.05}, {"gradient": 13.838422468149629, "_id": "bMlXg9mRme", "elevation": -2073.729, "temperature": 84.77849914954743, "vertical_depth": 2098.729}, {"gradient": 11.181458700891595, "_id": "3JYjKlkNkL", "elevation": -2080.405, "temperature": 84.85314656783459, "vertical_depth": 2105.405}, {"gradient": 11.183133825791707, "_id": "48JxqWQv4y", "elevation": -2087.08, "temperature": 84.92779398612174, "vertical_depth": 2112.08}, {"gradient": 14.503591854704158, "_id": "g4wGo9Ylor", "elevation": -2087.18, "temperature": 84.92924434530721, "vertical_depth": 2112.18}, {"gradient": 14.503591854638204, "_id": "8El2xbqMR1", "elevation": -2087.28, "temperature": 84.93069470449268, "vertical_depth": 2112.28}, {"gradient": 13.012944201740376, "_id": "3yrxX65RXe", "elevation": -2096.532, "temperature": 85.05109046424718, "vertical_depth": 2121.532}, {"gradient": 13.011537853075243, "_id": "2Gr1kRVNkR", "elevation": -2105.785, "temperature": 85.17148622400168, "vertical_depth": 2130.785}, {"gradient": 9.460574709884066, "_id": "LwP1RXj7xo", "elevation": -2115.037, "temperature": 85.25901546121753, "vertical_depth": 2140.037}, {"gradient": 9.4605747098836, "_id": "GAaGwlb1y4", "elevation": -2124.289, "temperature": 85.34654469843338, "vertical_depth": 2149.289}, {"gradient": 7.200905319547884, "_id": "mgMwpLo8KE", "elevation": -2133.542, "temperature": 85.41317467535515, "vertical_depth": 2158.542}, {"gradient": 7.201683627521789, "_id": "0M2G7mKker", "elevation": -2142.794, "temperature": 85.47980465227698, "vertical_depth": 2167.794}, {"gradient": 6.369051123448451, "_id": "K3vNJd89PX", "elevation": -2142.894, "temperature": 85.48044155738933, "vertical_depth": 2167.894}, {"gradient": 6.369051123419489, "_id": "Qk3qa8WGDv", "elevation": -2142.994, "temperature": 85.48107846250167, "vertical_depth": 2167.994}, {"gradient": 6.437326646217625, "_id": "jO8JNoVGgq", "elevation": -2152.935, "temperature": 85.54507192669172, "vertical_depth": 2177.935}, {"gradient": 6.437326646217331, "_id": "PldWQZJGPM", "elevation": -2162.876, "temperature": 85.60906539088177, "vertical_depth": 2187.876}, {"gradient": 6.554747895645005, "_id": "gOp09lbNYV", "elevation": -2172.816, "temperature": 85.67421958496448, "vertical_depth": 2197.816}, {"gradient": 6.554088530606968, "_id": "Lg8QlaO5RK", "elevation": -2182.757, "temperature": 85.73937377904724, "vertical_depth": 2207.757}, {"gradient": 6.641893855551624, "_id": "MDKlyv7xZn", "elevation": -2192.698, "temperature": 85.80540084586528, "vertical_depth": 2217.698}, {"gradient": 6.641893855551319, "_id": "bEMedPb5OV", "elevation": -2202.639, "temperature": 85.87142791268332, "vertical_depth": 2227.639}, {"gradient": 6.67923782817756, "_id": "3QgvOnxRyZ", "elevation": -2212.58, "temperature": 85.93782621593323, "vertical_depth": 2237.58}, {"gradient": 6.6792378281772535, "_id": "wN9zJLM32x", "elevation": -2222.521, "temperature": 86.00422451918314, "vertical_depth": 2247.521}, {"gradient": 6.688099575278122, "_id": "BbjyOBPmZy", "elevation": -2232.462, "temperature": 86.07071091706098, "vertical_depth": 2257.462}, {"gradient": 6.68809957528384, "_id": "edxJvXg8LJ", "elevation": -2242.403, "temperature": 86.13719731493887, "vertical_depth": 2267.403}, {"gradient": 6.525841065227959, "_id": "MOWBL32mmR", "elevation": -2252.344, "temperature": 86.2020707009683, "vertical_depth": 2277.344}, {"gradient": 6.525841065233975, "_id": "Jg3YNRApB0", "elevation": -2262.285, "temperature": 86.2669440869978, "vertical_depth": 2287.285}, {"gradient": 6.494984791125016, "_id": "KV8e7JgLO6", "elevation": -2272.226, "temperature": 86.33151073080637, "vertical_depth": 2297.226}, {"gradient": 6.494984791125313, "_id": "x8kEZjydEL", "elevation": -2282.167, "temperature": 86.39607737461495, "vertical_depth": 2307.167}, {"gradient": 6.472880415588241, "_id": "Zn1XEvJYVa", "elevation": -2292.107, "temperature": 86.4604178059459, "vertical_depth": 2317.107}, {"gradient": 6.472229285881575, "_id": "j5LgPlbmmp", "elevation": -2302.048, "temperature": 86.52475823727684, "vertical_depth": 2327.048}, {"gradient": 6.447073230944483, "_id": "6vN8dKwbnB", "elevation": -2311.989, "temperature": 86.58884859226566, "vertical_depth": 2336.989}, {"gradient": 6.447073230944778, "_id": "rK0p2jPld3", "elevation": -2321.93, "temperature": 86.65293894725448, "vertical_depth": 2346.93}, {"gradient": 6.420527880365404, "_id": "8Q0aXYWZxg", "elevation": -2331.871, "temperature": 86.7167654149132, "vertical_depth": 2356.871}, {"gradient": 6.4205278803656975, "_id": "adabDkZNqW", "elevation": -2341.812, "temperature": 86.78059188257191, "vertical_depth": 2366.812}, {"gradient": 6.393171219582337, "_id": "mpJLn0e29g", "elevation": -2351.753, "temperature": 86.84414639766578, "vertical_depth": 2376.753}, {"gradient": 6.393171219576912, "_id": "EOvW9475GV", "elevation": -2361.694, "temperature": 86.9077009127596, "vertical_depth": 2386.694}, {"gradient": 6.365489029833988, "_id": "mLwlbZ8egO", "elevation": -2371.635, "temperature": 86.97098023920518, "vertical_depth": 2396.635}, {"gradient": 6.365489029834279, "_id": "3r6lXLmJqb", "elevation": -2381.576, "temperature": 87.03425956565076, "vertical_depth": 2406.576}, {"gradient": 6.3376667808180756, "_id": "lWrA0kXYGj", "elevation": -2391.517, "temperature": 87.09726231111887, "vertical_depth": 2416.517}, {"gradient": 6.338304373049386, "_id": "6XzY76x4Lo", "elevation": -2401.457, "temperature": 87.16026505658698, "vertical_depth": 2426.457}, {"gradient": 6.309310528948625, "_id": "QDMv09ay8P", "elevation": -2411.398, "temperature": 87.22298591255526, "vertical_depth": 2436.398}, {"gradient": 6.309310528948915, "_id": "0Abngq1BRP", "elevation": -2421.339, "temperature": 87.28570676852354, "vertical_depth": 2446.339}, {"gradient": 6.280810407678615, "_id": "RgQo3LaBy6", "elevation": -2431.28, "temperature": 87.34814430478627, "vertical_depth": 2456.28}, {"gradient": 6.280810407673185, "_id": "n82ANY5eGq", "elevation": -2441.221, "temperature": 87.41058184104895, "vertical_depth": 2466.221}, {"gradient": 6.2522000998757985, "_id": "olG0A3aMYa", "elevation": -2451.162, "temperature": 87.47273496224182, "vertical_depth": 2476.162}, {"gradient": 6.252200099869795, "_id": "obGB4qE7KK", "elevation": -2461.103, "temperature": 87.53488808343462, "vertical_depth": 2486.103}, {"gradient": 6.223498769251007, "_id": "KnV7x5RBZq", "elevation": -2471.044, "temperature": 87.59675588469975, "vertical_depth": 2496.044}, {"gradient": 6.223498769245004, "_id": "Z8gN04Xz8W", "elevation": -2480.985, "temperature": 87.65862368596481, "vertical_depth": 2505.985}, {"gradient": 6.194619428636852, "_id": "AB81J5mwBr", "elevation": -2490.926, "temperature": 87.72020439770489, "vertical_depth": 2515.926}, {"gradient": 6.194619428636569, "_id": "aabmWeL5ap", "elevation": -2500.867, "temperature": 87.78178510944497, "vertical_depth": 2525.867}, {"gradient": 6.165486907715278, "_id": "Qne0ZP4zP5", "elevation": -2510.808, "temperature": 87.84307621479456, "vertical_depth": 2535.808}, {"gradient": 6.166107178022051, "_id": "qv4nq9g19d", "elevation": -2520.748, "temperature": 87.9043673201441, "vertical_depth": 2545.748}, {"gradient": 6.136395182447987, "_id": "0NXLa8PJj8", "elevation": -2530.689, "temperature": 87.96536922465282, "vertical_depth": 2555.689}, {"gradient": 6.136395182441988, "_id": "b6Wz7gwVgE", "elevation": -2540.63, "temperature": 88.02637112916148, "vertical_depth": 2565.63}, {"gradient": 6.107307916321328, "_id": "ZmaPwn4zn6", "elevation": -2550.571, "temperature": 88.08708387715762, "vertical_depth": 2575.571}, {"gradient": 6.10730791631533, "_id": "M7Ln1JKVol", "elevation": -2560.512, "temperature": 88.14779662515372, "vertical_depth": 2585.512}, {"gradient": 6.078187538986094, "_id": "6XP2wo01Ea", "elevation": -2570.453, "temperature": 88.20821988747878, "vertical_depth": 2595.453}, {"gradient": 6.07818753899753, "_id": "AjQR2vGAX9", "elevation": -2580.394, "temperature": 88.26864314980395, "vertical_depth": 2605.394}, {"gradient": 6.0490221595089695, "_id": "nKvm0gqAjd", "elevation": -2590.335, "temperature": 88.32877647909163, "vertical_depth": 2615.335}, {"gradient": 6.049022159503528, "_id": "zwvyGxXYV4", "elevation": -2600.276, "temperature": 88.38890980837925, "vertical_depth": 2625.276}, {"gradient": 6.0198035336106, "_id": "8vxeo1nDlZ", "elevation": -2610.217, "temperature": 88.44875267530688, "vertical_depth": 2635.217}, {"gradient": 6.019803533616593, "_id": "26QdRJ9N0m", "elevation": -2620.158, "temperature": 88.50859554223456, "vertical_depth": 2645.158}, {"gradient": 5.9905240860831706, "_id": "v0mrVqz4wy", "elevation": -2630.099, "temperature": 88.56814734217431, "vertical_depth": 2655.099}, {"gradient": 5.9911267545024165, "_id": "ZOjN0Y4MJG", "elevation": -2640.039, "temperature": 88.62769914211407, "vertical_depth": 2665.039}, {"gradient": 5.9611770183660004, "_id": "Mgo365Vex3", "elevation": -2649.98, "temperature": 88.68695920285364, "vertical_depth": 2674.98}, {"gradient": 5.9611770183660004, "_id": "885mxQjDJm", "elevation": -2659.921, "temperature": 88.74621926359322, "vertical_depth": 2684.921}, {"gradient": 5.931743258767906, "_id": "OY4rmV9R0D", "elevation": -2669.862, "temperature": 88.80518672332863, "vertical_depth": 2694.862}, {"gradient": 5.9317432587624594, "_id": "ZLZ95RABab", "elevation": -2679.803, "temperature": 88.86415418306399, "vertical_depth": 2704.803}, {"gradient": 5.884204739336073, "_id": "XmKyLEJMNg", "elevation": -2689.744, "temperature": 88.92264906237773, "vertical_depth": 2714.744}, {"gradient": 5.884204739336342, "_id": "ZdE7NRxqJM", "elevation": -2699.685, "temperature": 88.98114394169147, "vertical_depth": 2724.685}, {"gradient": 5.754973032897043, "_id": "aMwnrRNvk5", "elevation": -2709.626, "temperature": 89.0383541286115, "vertical_depth": 2734.626}, {"gradient": 5.754973032897307, "_id": "wG6K7yEdOv", "elevation": -2719.567, "temperature": 89.09556431553153, "vertical_depth": 2744.567}, {"gradient": 5.724164714798148, "_id": "rw3LEbqxVV", "elevation": -2729.508, "temperature": 89.15246823696134, "vertical_depth": 2754.508}, {"gradient": 5.724164714797887, "_id": "YyAko0Y6Eq", "elevation": -2739.449, "temperature": 89.20937215839115, "vertical_depth": 2764.449}, {"gradient": 5.693845683114128, "_id": "xvakBm87b4", "elevation": -2749.39, "temperature": 89.26597467832698, "vertical_depth": 2774.39}, {"gradient": 5.694418504599842, "_id": "REbDRkXwWD", "elevation": -2759.33, "temperature": 89.3225771982627, "vertical_depth": 2784.33}, {"gradient": 5.555752433263669, "_id": "gNj0gRmpng", "elevation": -2769.271, "temperature": 89.37780693320178, "vertical_depth": 2794.271}, {"gradient": 5.555752433258205, "_id": "o7AxNmQgzD", "elevation": -2779.212, "temperature": 89.4330366681408, "vertical_depth": 2804.212}, {"gradient": 5.482791350341451, "_id": "mW7aBklDyN", "elevation": -2789.153, "temperature": 89.48754109695454, "vertical_depth": 2814.153}, {"gradient": 5.4827913503412, "_id": "X2ZBznWEgZ", "elevation": -2799.094, "temperature": 89.54204552576829, "vertical_depth": 2824.094}, {"gradient": 5.451793802433616, "_id": "VmzjBVPyoy", "elevation": -2809.035, "temperature": 89.59624180795828, "vertical_depth": 2834.035}, {"gradient": 5.451793802433367, "_id": "2dAmXQbK7M", "elevation": -2818.976, "temperature": 89.65043809014827, "vertical_depth": 2843.976}, {"gradient": 2.9971242378251164, "_id": "57EKGkoazV", "elevation": -2819.076, "temperature": 89.65073780257205, "vertical_depth": 2844.076}, {"gradient": 2.9971242383935506, "_id": "YGRKp9PrOX", "elevation": -2819.176, "temperature": 89.65103751499589, "vertical_depth": 2844.176}, {"gradient": 2.669000748489815, "_id": "mpR0gw5klP", "elevation": -2828.53, "temperature": 89.67600334799727, "vertical_depth": 2853.53}, {"gradient": 2.6692861115612456, "_id": "WrkMXKoWA3", "elevation": -2837.883, "temperature": 89.7009691809987, "vertical_depth": 2862.883}, {"gradient": 2.8955277585100725, "_id": "Zqon7gW06J", "elevation": -2847.237, "temperature": 89.7280539476518, "vertical_depth": 2872.237}, {"gradient": 2.89552775851629, "_id": "d6QXnO4qkv", "elevation": -2856.591, "temperature": 89.75513871430496, "vertical_depth": 2881.591}, {"gradient": 3.0346301778624043, "_id": "d68P5bekZL", "elevation": -2865.945, "temperature": 89.78352464498869, "vertical_depth": 2890.945}, {"gradient": 3.0346301778686287, "_id": "gQL4m9lGWn", "elevation": -2875.299, "temperature": 89.81191057567247, "vertical_depth": 2900.299}, {"gradient": 5.668756593314055, "_id": "VpdOlG7yoW", "elevation": -2875.399, "temperature": 89.8124774513318, "vertical_depth": 2900.399}, {"gradient": 5.726016761482998, "_id": "Nd6Bbx2Gze", "elevation": -2875.498, "temperature": 89.81304432699119, "vertical_depth": 2900.498}, {"gradient": 6.008311652144756, "_id": "4P6g3VwYwR", "elevation": -2883.604, "temperature": 89.86174770124347, "vertical_depth": 2908.604}, {"gradient": 6.0083116521514315, "_id": "oJPma0lklo", "elevation": -2891.71, "temperature": 89.91045107549581, "vertical_depth": 2916.71}, {"gradient": 5.73044277189322, "_id": "K2dJweP3v0", "elevation": -2899.815, "temperature": 89.95689631416201, "vertical_depth": 2924.815}, {"gradient": 5.729735833487889, "_id": "LavqJ9VEMy", "elevation": -2907.921, "temperature": 90.00334155282826, "vertical_depth": 2932.921}, {"gradient": 5.546886772182279, "_id": "EKy3j5R7Pg", "elevation": -2916.026, "temperature": 90.0482990701168, "vertical_depth": 2941.026}, {"gradient": 5.546202478230477, "_id": "51jo8xGXOr", "elevation": -2924.132, "temperature": 90.09325658740534, "vertical_depth": 2949.132}, {"gradient": 3.039072731783598, "_id": "NEmq5XPe5O", "elevation": -2924.232, "temperature": 90.09356049467851, "vertical_depth": 2949.232}, {"gradient": 3.0697704367114693, "_id": "5Bk6MpjDAd", "elevation": -2924.331, "temperature": 90.09386440195175, "vertical_depth": 2949.331}, {"gradient": 2.6637511096027455, "_id": "aG68eZqEVZ", "elevation": -2932.568, "temperature": 90.11580571984155, "vertical_depth": 2957.568}, {"gradient": 2.663751109616695, "_id": "bjYgl3o46x", "elevation": -2940.805, "temperature": 90.13774703773146, "vertical_depth": 2965.805}, {"gradient": 2.824918458642236, "_id": "RqKPy3Z7JN", "elevation": -2949.042, "temperature": 90.1610158910753, "vertical_depth": 2974.042}, {"gradient": 2.824575545507692, "_id": "qBeWJqNa1X", "elevation": -2957.28, "temperature": 90.18428474441919, "vertical_depth": 2982.28}, {"gradient": 2.928492763188069, "_id": "GzAa10DelR", "elevation": -2965.517, "temperature": 90.20840673930957, "vertical_depth": 2990.517}, {"gradient": 2.9284927632017093, "_id": "m3DvjGX2al", "elevation": -2973.754, "temperature": 90.23252873420006, "vertical_depth": 2998.754}, {"gradient": 25.77506192259176, "_id": "BqMozk52e6", "elevation": -2976.355, "temperature": 90.29956967026072, "vertical_depth": 3001.355}, {"gradient": 25.77506192259176, "_id": "zRmgzW0MeK", "elevation": -2978.956, "temperature": 90.36661060632139, "vertical_depth": 3003.956}, {"gradient": 4.567715507736983, "_id": "JqoarkDBEa", "elevation": -2979.056, "temperature": 90.36706737787216, "vertical_depth": 3004.056}, {"gradient": 4.567715507736983, "_id": "52NPkB9ZXm", "elevation": -2979.156, "temperature": 90.36752414942293, "vertical_depth": 3004.156}, {"gradient": 4.93617779388338, "_id": "lXjlr5GMD1", "elevation": -2987.456, "temperature": 90.40849442511217, "vertical_depth": 3012.456}, {"gradient": 4.936177793883649, "_id": "WM2kb9Exm7", "elevation": -2995.756, "temperature": 90.4494647008014, "vertical_depth": 3020.756}, {"gradient": 4.907302684599304, "_id": "1nzmWelkpb", "elevation": -3004.056, "temperature": 90.49019531308358, "vertical_depth": 3029.056}, {"gradient": 4.907302684599304, "_id": "nD24VaorKN", "elevation": -3012.356, "temperature": 90.53092592536575, "vertical_depth": 3037.356}, {"gradient": 4.878954240094757, "_id": "mgev3EQyP7", "elevation": -3020.655, "temperature": 90.5714163666043, "vertical_depth": 3045.655}, {"gradient": 4.878366414282845, "_id": "jx7Glq1NDD", "elevation": -3028.955, "temperature": 90.61190680784284, "vertical_depth": 3053.955}, {"gradient": 4.849373831848044, "_id": "R0j1r2x1NA", "elevation": -3037.255, "temperature": 90.65215661064718, "vertical_depth": 3062.255}, {"gradient": 4.84937383184831, "_id": "Q6mw8jbwa0", "elevation": -3045.555, "temperature": 90.69240641345152, "vertical_depth": 3070.555}, {"gradient": 4.779499085981008, "_id": "q4QeDJPebM", "elevation": -3045.655, "temperature": 90.69288436336012, "vertical_depth": 3070.655}, {"gradient": 4.779499085434309, "_id": "wJdl0pXlaz", "elevation": -3045.755, "temperature": 90.69336231326866, "vertical_depth": 3070.755}, {"gradient": 4.758867723211076, "_id": "E7xNEkKNNk", "elevation": -3055.689, "temperature": 90.74063690523104, "vertical_depth": 3080.689}, {"gradient": 4.758867723205136, "_id": "BMYPRolP57", "elevation": -3065.623, "temperature": 90.78791149719336, "vertical_depth": 3090.623}, {"gradient": 4.724274313564713, "_id": "jDdGZ57GG6", "elevation": -3075.557, "temperature": 90.83484243822431, "vertical_depth": 3100.557}, {"gradient": 4.724274313553052, "_id": "qg89yX599q", "elevation": -3085.491, "temperature": 90.88177337925515, "vertical_depth": 3110.491}, {"gradient": 4.689596120190772, "_id": "3VmZarPZOj", "elevation": -3095.425, "temperature": 90.92835982711313, "vertical_depth": 3120.425}, {"gradient": 4.689596120190987, "_id": "Od6n2GvnDQ", "elevation": -3105.359, "temperature": 90.9749462749711, "vertical_depth": 3130.359}, {"gradient": 4.654833531964132, "_id": "MXy0gQ90k5", "elevation": -3115.293, "temperature": 91.02118739127764, "vertical_depth": 3140.293}, {"gradient": 4.65483353197579, "_id": "KOdLxrqLGW", "elevation": -3125.227, "temperature": 91.06742850758428, "vertical_depth": 3150.227}, {"gradient": 4.619990846336306, "_id": "npJqv21qeq", "elevation": -3135.161, "temperature": 91.11332349665179, "vertical_depth": 3160.161}, {"gradient": 4.619990846330795, "_id": "OM18Ono8A2", "elevation": -3145.095, "temperature": 91.15921848571924, "vertical_depth": 3170.095}, {"gradient": 4.571187719169281, "_id": "K82pBz0pL2", "elevation": -3155.029, "temperature": 91.20462866452146, "vertical_depth": 3180.029}, {"gradient": 4.571187719169281, "_id": "YaWPNXLP1M", "elevation": -3164.963, "temperature": 91.2500388433237, "vertical_depth": 3189.963}, {"gradient": 4.465740733201782, "_id": "GM2A50wARP", "elevation": -3174.897, "temperature": 91.29440151176732, "vertical_depth": 3199.897}, {"gradient": 4.4657407332073, "_id": "DRyVPnEV8Y", "elevation": -3184.831, "temperature": 91.338764180211, "vertical_depth": 3209.831}, {"gradient": 4.4307765582245375, "_id": "2mnxPjkxJ0", "elevation": -3194.765, "temperature": 91.3827795145404, "vertical_depth": 3219.765}, {"gradient": 4.430776558224335, "_id": "Q9DQx8BQrj", "elevation": -3204.699, "temperature": 91.4267948488698, "vertical_depth": 3229.699}, {"gradient": 4.3957091302210936, "_id": "xnb5ZVl5rJ", "elevation": -3214.633, "temperature": 91.47046182336942, "vertical_depth": 3239.633}, {"gradient": 4.3957091302266145, "_id": "GblWYG4Wxq", "elevation": -3224.567, "temperature": 91.51412879786909, "vertical_depth": 3249.567}, {"gradient": 4.3605475801303255, "_id": "6g4QKaNeg6", "elevation": -3234.501, "temperature": 91.5574464775301, "vertical_depth": 3259.501}, {"gradient": 4.360986576167562, "_id": "7mDxrpqxjK", "elevation": -3244.434, "temperature": 91.60076415719118, "vertical_depth": 3269.434}, {"gradient": 4.3253017255391235, "_id": "gabD12qDk2", "elevation": -3254.368, "temperature": 91.64373170453268, "vertical_depth": 3279.368}, {"gradient": 4.32530172555037, "_id": "ddXolNzoGj", "elevation": -3264.302, "temperature": 91.6866992518743, "vertical_depth": 3289.302}, {"gradient": 4.289971509901019, "_id": "zGDMW1LMxV", "elevation": -3274.236, "temperature": 91.72931582885366, "vertical_depth": 3299.236}, {"gradient": 4.289971509900822, "_id": "56mYGNvY55", "elevation": -3284.17, "temperature": 91.77193240583301, "vertical_depth": 3309.17}, {"gradient": 4.254556880275269, "_id": "mlxJY2WBlR", "elevation": -3294.104, "temperature": 91.81419717388167, "vertical_depth": 3319.104}, {"gradient": 4.254556880280797, "_id": "Vpjy6Z5yp7", "elevation": -3304.038, "temperature": 91.85646194193038, "vertical_depth": 3329.038}, {"gradient": 4.197669450039582, "_id": "qDQLR54Lne", "elevation": -3313.972, "temperature": 91.89816159024707, "vertical_depth": 3338.972}, {"gradient": 4.197669450039775, "_id": "aaGBKp0Bqe", "elevation": -3323.906, "temperature": 91.93986123856376, "vertical_depth": 3348.906}, {"gradient": 4.043322841991236, "_id": "0V8zZ14zaw", "elevation": -3333.84, "temperature": 91.9800276076761, "vertical_depth": 3358.84}, {"gradient": 4.043322841997142, "_id": "GBKa5gkagY", "elevation": -3343.774, "temperature": 92.0201939767885, "vertical_depth": 3368.774}, {"gradient": 4.007800152740128, "_id": "4mgJn6qJR0", "elevation": -3353.708, "temperature": 92.06000746350583, "vertical_depth": 3378.708}, {"gradient": 4.007800152740311, "_id": "0NPjMkLjkJ", "elevation": -3363.642, "temperature": 92.09982095022315, "vertical_depth": 3388.642}, {"gradient": 3.972201660689955, "_id": "aK4VWaeYK1", "elevation": -3373.576, "temperature": 92.13928080152044, "vertical_depth": 3398.576}, {"gradient": 3.972201660689955, "_id": "m7Qrb1zrOk", "elevation": -3383.51, "temperature": 92.17874065281774, "vertical_depth": 3408.51}, {"gradient": 3.936496894266459, "_id": "yymVnebVN9", "elevation": -3393.444, "temperature": 92.21784581296538, "vertical_depth": 3418.444}, {"gradient": 3.9364968942720004, "_id": "WQ5qxYEq3l", "elevation": -3403.378, "temperature": 92.25695097311308, "vertical_depth": 3428.378}, {"gradient": 3.900692396144499, "_id": "XJomOQkmrG", "elevation": -3413.312, "temperature": 92.29570045137638, "vertical_depth": 3438.312}, {"gradient": 3.9006923961443203, "_id": "Z9ojnWJjOk", "elevation": -3423.246, "temperature": 92.33444992963967, "vertical_depth": 3448.246}, {"gradient": 3.8648059924982325, "_id": "EXLR3rwRJx", "elevation": -3433.18, "temperature": 92.37284291236915, "vertical_depth": 3458.18}, {"gradient": 3.864805992498056, "_id": "XBr06l90LO", "elevation": -3443.114, "temperature": 92.41123589509863, "vertical_depth": 3468.114}, {"gradient": 3.82883777961929, "_id": "m6LQknzo6e", "elevation": -3453.048, "temperature": 92.44927156960136, "vertical_depth": 3478.048}, {"gradient": 3.8288377796191146, "_id": "O5zVmK2VZ7", "elevation": -3462.982, "temperature": 92.4873072441041, "vertical_depth": 3487.982}, {"gradient": 5.081094458892113, "_id": "mPQg0VkgGY", "elevation": -3463.082, "temperature": 92.48781535354999, "vertical_depth": 3488.082}, {"gradient": 5.081094459460547, "_id": "OX4aK0p3dA", "elevation": -3463.182, "temperature": 92.48832346299594, "vertical_depth": 3488.182}, {"gradient": 5.319293699844834, "_id": "1Jnpv45pMn", "elevation": -3473.132, "temperature": 92.5412504353094, "vertical_depth": 3498.132}, {"gradient": 5.31982835596112, "_id": "PkY69816PA", "elevation": -3483.081, "temperature": 92.59417740762285, "vertical_depth": 3508.081}, {"gradient": 5.271429194873611, "_id": "O72dpEOd0n", "elevation": -3493.031, "temperature": 92.64662812811184, "vertical_depth": 3518.031}, {"gradient": 5.271429194884795, "_id": "zjxprvOpM2", "elevation": -3502.981, "temperature": 92.69907884860095, "vertical_depth": 3527.981}, {"gradient": 5.223406078156585, "_id": "Zjwd0RZdM1", "elevation": -3512.931, "temperature": 92.7510517390786, "vertical_depth": 3537.931}, {"gradient": 5.223931096357092, "_id": "gVLKe6jKPo", "elevation": -3522.88, "temperature": 92.80302462955626, "vertical_depth": 3547.88}, {"gradient": 5.176095750254982, "_id": "jEonqPDndR", "elevation": -3532.828, "temperature": 92.8545164300798, "vertical_depth": 3557.828}, {"gradient": 5.176095750254982, "_id": "d96pNzPpa3", "elevation": -3542.776, "temperature": 92.90600823060333, "vertical_depth": 3567.776}, {"gradient": 5.129994280679081, "_id": "j9m8jnD8pl", "elevation": -3552.718, "temperature": 92.95701063374185, "vertical_depth": 3577.718}, {"gradient": 5.133092103312268, "_id": "3w2GrR8nAG", "elevation": -3562.654, "temperature": 93.00801303688036, "vertical_depth": 3587.654}, {"gradient": 5.088323057641977, "_id": "klBOAkgORM", "elevation": -3572.579, "temperature": 93.05851464322745, "vertical_depth": 3597.579}, {"gradient": 5.092941341982554, "_id": "gzgN504NLR", "elevation": -3582.495, "temperature": 93.10901624957455, "vertical_depth": 3607.495}, {"gradient": 5.0484882881745206, "_id": "PRDq2EeXn5", "elevation": -3592.398, "temperature": 93.15901142909235, "vertical_depth": 3617.398}, {"gradient": 5.055635505894955, "_id": "WBJby0wb1K", "elevation": -3602.287, "temperature": 93.20900660861014, "vertical_depth": 3627.287}, {"gradient": 5.010976391980576, "_id": "GZK8vd08gq", "elevation": -3612.162, "temperature": 93.25849000048095, "vertical_depth": 3637.162}, {"gradient": 5.019108618602931, "_id": "8jVbRakbvj", "elevation": -3622.021, "temperature": 93.30797339235176, "vertical_depth": 3647.021}, {"gradient": 4.932384341818991, "_id": "NAwMgReX1x", "elevation": -3631.862, "temperature": 93.3565129866596, "vertical_depth": 3656.862}, {"gradient": 4.941422610998761, "_id": "lxO7LbJ7gK", "elevation": -3641.685, "temperature": 93.40505258096744, "vertical_depth": 3666.685}, {"gradient": 4.866143308134507, "_id": "wLgpB75pdn", "elevation": -3651.488, "temperature": 93.45275538381708, "vertical_depth": 3676.488}, {"gradient": 4.876589945782178, "_id": "drW6KXY6ml", "elevation": -3661.27, "temperature": 93.50045818666672, "vertical_depth": 3686.27}, {"gradient": 4.834035171423961, "_id": "q2ZgDnwgNp", "elevation": -3671.03, "temperature": 93.54763836993982, "vertical_depth": 3696.03}, {"gradient": 4.84644923195107, "_id": "w1dbrxNbB0", "elevation": -3680.765, "temperature": 93.59481855321286, "vertical_depth": 3705.765}, {"gradient": 4.804715639008131, "_id": "AymPZlbPNV", "elevation": -3690.475, "temperature": 93.64147234206763, "vertical_depth": 3715.475}, {"gradient": 4.818113069789234, "_id": "alQ0Lv9q9Q", "elevation": -3700.158, "temperature": 93.6881261309224, "vertical_depth": 3725.158}, {"gradient": 4.77671181953604, "_id": "LVPQ0RLQ1L", "elevation": -3709.814, "temperature": 93.73425006025184, "vertical_depth": 3734.814}, {"gradient": 4.791598725263031, "_id": "OnoKdBeKzq", "elevation": -3719.44, "temperature": 93.78037398958122, "vertical_depth": 3744.44}, {"gradient": 4.751029510443302, "_id": "qKzVnDWVNE", "elevation": -3729.036, "temperature": 93.82596486876344, "vertical_depth": 3754.036}, {"gradient": 4.7669258868898625, "_id": "rpzB5rGBPe", "elevation": -3738.6, "temperature": 93.87155574794565, "vertical_depth": 3763.6}, {"gradient": 4.7267057345707295, "_id": "erABpnJ3J2", "elevation": -3748.132, "temperature": 93.91661070700758, "vertical_depth": 3773.132}, {"gradient": 4.74362592776676, "_id": "r84pMNlplL", "elevation": -3757.63, "temperature": 93.9616656660695, "vertical_depth": 3782.63}, {"gradient": 4.705266108448648, "_id": "PPwa83g2gx", "elevation": -3767.091, "temperature": 94.00618218872154, "vertical_depth": 3792.091}, {"gradient": 4.7232384776690495, "_id": "a8gLr40L0d", "elevation": -3776.516, "temperature": 94.05069871137357, "vertical_depth": 3801.516}, {"gradient": 4.685267225809221, "_id": "1X2nEyqnql", "elevation": -3785.902, "temperature": 94.09467462955502, "vertical_depth": 3810.902}, {"gradient": 4.7048163241089505, "_id": "EWAMlXvMjX", "elevation": -3795.249, "temperature": 94.13865054773646, "vertical_depth": 3820.249}, {"gradient": 4.666751893114772, "_id": "7P1kd74kmw", "elevation": -3804.556, "temperature": 94.18208400760568, "vertical_depth": 3829.556}, {"gradient": 4.687907163422258, "_id": "zEwrpy9r4v", "elevation": -3813.821, "temperature": 94.22551746747479, "vertical_depth": 3838.821}, {"gradient": 4.651277835769439, "_id": "1r0bEj7b8D", "elevation": -3823.042, "temperature": 94.26840690039842, "vertical_depth": 3848.042}, {"gradient": 4.6730696146906245, "_id": "qlPLY4WLYw", "elevation": -3832.22, "temperature": 94.31129633332205, "vertical_depth": 3857.22}, {"gradient": 4.637408019758703, "_id": "YwNjdQPj8D", "elevation": -3841.351, "temperature": 94.35364050595047, "vertical_depth": 3866.351}, {"gradient": 4.660888566700588, "_id": "KG2yzwKyWM", "elevation": -3850.436, "temperature": 94.39598467857894, "vertical_depth": 3875.436}, {"gradient": 4.625198567147635, "_id": "jPpBA5mBnn", "elevation": -3859.473, "temperature": 94.43778259803025, "vertical_depth": 3884.473}, {"gradient": 4.650931284229304, "_id": "eKYmqA2627", "elevation": -3868.46, "temperature": 94.47958051748162, "vertical_depth": 3893.46}, {"gradient": 4.520101774711104, "_id": "KmK5x7q5Yl", "elevation": -3877.397, "temperature": 94.51997666704222, "vertical_depth": 3902.397}, {"gradient": 4.546555943791973, "_id": "J8oRlKLRQB", "elevation": -3886.282, "temperature": 94.56037281660281, "vertical_depth": 3911.282}, {"gradient": 4.455084550759343, "_id": "yANL1E4LYa", "elevation": -3895.136, "temperature": 94.59981813521523, "vertical_depth": 3920.136}, {"gradient": 4.455084550759343, "_id": "O9aQ0l3QpG", "elevation": -3903.99, "temperature": 94.63926345382765, "vertical_depth": 3928.99}, {"gradient": 4.40524052906107, "_id": "zZyw3qlwdz", "elevation": -3912.844, "temperature": 94.67826745347196, "vertical_depth": 3937.844}, {"gradient": 4.405738127675094, "_id": "9bW6oVE6yz", "elevation": -3921.697, "temperature": 94.71727145311627, "vertical_depth": 3946.697}, {"gradient": 4.355355865320297, "_id": "5x2v0AR5KP", "elevation": -3930.551, "temperature": 94.75583377394781, "vertical_depth": 3955.551}, {"gradient": 4.35584782915902, "_id": "mmBOZnrOvr", "elevation": -3939.404, "temperature": 94.79439609477936, "vertical_depth": 3964.404}, {"gradient": 4.305342202168439, "_id": "6DBn85LZ0O", "elevation": -3948.258, "temperature": 94.83251559463736, "vertical_depth": 3973.258}, {"gradient": 4.305342202168218, "_id": "88DO70q9LV", "elevation": -3957.112, "temperature": 94.87063509449536, "vertical_depth": 3982.112}, {"gradient": 4.2556776954780435, "_id": "1LGXOkaXp3", "elevation": -3965.965, "temperature": 94.90831060913342, "vertical_depth": 3990.965}, {"gradient": 4.255197045178602, "_id": "drn5ARW5JL", "elevation": -3974.819, "temperature": 94.94598612377143, "vertical_depth": 3999.819}, {"gradient": 4.20491776971795, "_id": "XZ6w1elQpo", "elevation": -3983.673, "temperature": 94.98321646570452, "vertical_depth": 4008.673}, {"gradient": 4.205392740662111, "_id": "BkzOyNb0aP", "elevation": -3992.526, "temperature": 95.0204468076376, "vertical_depth": 4017.526}, {"gradient": 4.15451056137617, "_id": "X531BMkjGA", "elevation": -4001.38, "temperature": 95.05723084414802, "vertical_depth": 4026.38}, {"gradient": 4.154510561376383, "_id": "LlWPXVZyGk", "elevation": -4010.234, "temperature": 95.09401488065845, "vertical_depth": 4035.234}, {"gradient": 4.104442647297263, "_id": "oZryGWgj7E", "elevation": -4019.087, "temperature": 95.13035151141497, "vertical_depth": 4044.087}, {"gradient": 4.103979077990027, "_id": "30eMzGPyyl", "elevation": -4027.941, "temperature": 95.1666881421715, "vertical_depth": 4052.941}, {"gradient": 4.05373764717406, "_id": "W0jApLelA9", "elevation": -4036.794, "temperature": 95.20257588156193, "vertical_depth": 4061.794}, {"gradient": 4.053279804656779, "_id": "b7VMkWGll5", "elevation": -4045.648, "temperature": 95.23846362095236, "vertical_depth": 4070.648}, {"gradient": 4.002441352883622, "_id": "jepNwqrEEe", "elevation": -4054.502, "temperature": 95.27390123669079, "vertical_depth": 4079.502}, {"gradient": 4.002893452889483, "_id": "3xREdDn11E", "elevation": -4063.355, "temperature": 95.30933885242922, "vertical_depth": 4088.355}, {"gradient": 3.951476279467187, "_id": "P71ADb5LeO", "elevation": -4072.209, "temperature": 95.34432522340762, "vertical_depth": 4097.209}, {"gradient": 3.951476279466984, "_id": "Y5k6Wrg0B5", "elevation": -4081.063, "temperature": 95.37931159438602, "vertical_depth": 4106.063}, {"gradient": 3.8596286228253804, "_id": "Mo79mRnv3o", "elevation": -4089.916, "temperature": 95.4134808865839, "vertical_depth": 4114.916}, {"gradient": 3.8591927036287723, "_id": "bZ7EbXGdr0", "elevation": -4098.77, "temperature": 95.44765017878183, "vertical_depth": 4123.77}, {"gradient": 3.7788447679397, "_id": "QM2lgON0RR", "elevation": -4107.623, "temperature": 95.4811042915124, "vertical_depth": 4132.623}, {"gradient": 3.7784179727380622, "_id": "BgmGMdJNm1", "elevation": -4116.477, "temperature": 95.51455840424302, "vertical_depth": 4141.477}, {"gradient": 3.7270881651038494, "_id": "4WArd1p3AJ", "elevation": -4125.331, "temperature": 95.54755804285685, "vertical_depth": 4150.331}, {"gradient": 3.727509162305104, "_id": "w5PR8b7Y2w", "elevation": -4134.184, "temperature": 95.58055768147074, "vertical_depth": 4159.184}, {"gradient": 3.6756322389753033, "_id": "bR516gGV5l", "elevation": -4143.038, "temperature": 95.61310172931462, "vertical_depth": 4168.038}, {"gradient": 3.675632238981346, "_id": "OY3NgWLaXk", "elevation": -4151.892, "temperature": 95.64564577715856, "vertical_depth": 4176.892}, {"gradient": 3.624465345771296, "_id": "KJ40LqRNM5", "elevation": -4160.745, "temperature": 95.67773316886468, "vertical_depth": 4185.745}, {"gradient": 3.6240559866854016, "_id": "1NyeZ4QjDB", "elevation": -4169.599, "temperature": 95.70982056057079, "vertical_depth": 4194.599}, {"gradient": 3.572354796117948, "_id": "JxAJ03NG8v", "elevation": -4178.453, "temperature": 95.74145018993562, "vertical_depth": 4203.453}, {"gradient": 3.57275831524784, "_id": "JmpYE7wrmw", "elevation": -4187.306, "temperature": 95.7730798193005, "vertical_depth": 4212.306}, {"gradient": 3.5205239319024724, "_id": "bzAQ4VegMB", "elevation": -4196.16, "temperature": 95.80425053819357, "vertical_depth": 4221.16}, {"gradient": 3.520921596408942, "_id": "WDmkwBPvLL", "elevation": -4205.013, "temperature": 95.83542125708658, "vertical_depth": 4230.013}, {"gradient": 3.4685643952317307, "_id": "gk2WJjnej4", "elevation": -4213.867, "temperature": 95.86613192624196, "vertical_depth": 4238.867}, {"gradient": 3.4685643952320864, "_id": "KkDgLNKv5g", "elevation": -4222.721, "temperature": 95.89684259539735, "vertical_depth": 4247.721}, {"gradient": 3.416852392376942, "_id": "pK7rm59wJX", "elevation": -4231.574, "temperature": 95.92709198962706, "vertical_depth": 4256.574}, {"gradient": 3.4164664817836425, "_id": "K8AVvJqGQe", "elevation": -4240.428, "temperature": 95.95734138385677, "vertical_depth": 4265.428}, {"gradient": 3.3642277510790466, "_id": "Qm9B0w3Wwb", "elevation": -4249.282, "temperature": 95.98712825636483, "vertical_depth": 4274.282}, {"gradient": 3.364607760997561, "_id": "68kJN59nB3", "elevation": -4258.135, "temperature": 96.01691512887294, "vertical_depth": 4283.135}, {"gradient": 3.3118658582771485, "_id": "zn9JMvm3ze", "elevation": -4266.989, "temperature": 96.04623838918212, "vertical_depth": 4291.989}, {"gradient": 3.3122399535957907, "_id": "aonmpRQPYa", "elevation": -4275.842, "temperature": 96.0755616494913, "vertical_depth": 4300.842}, {"gradient": 3.2593825771240024, "_id": "dzDrlPXKjp", "elevation": -4284.696, "temperature": 96.10442022282916, "vertical_depth": 4309.696}, {"gradient": 3.2593825771240024, "_id": "1B7Ab05WPY", "elevation": -4293.55, "temperature": 96.13327879616702, "vertical_depth": 4318.55}, {"gradient": 3.2071407904883724, "_id": "MaB2OZVdbp", "elevation": -4302.403, "temperature": 96.16167161358521, "vertical_depth": 4327.403}, {"gradient": 3.206778565409869, "_id": "91rgblPyv2", "elevation": -4311.257, "temperature": 96.19006443100335, "vertical_depth": 4336.257}, {"gradient": 3.154054079647854, "_id": "PRkD6P5Bvl", "elevation": -4320.111, "temperature": 96.21799042582455, "vertical_depth": 4345.111}, {"gradient": 3.154410349170083, "_id": "42MRLD5OY1", "elevation": -4328.964, "temperature": 96.24591642064576, "vertical_depth": 4353.964}, {"gradient": 3.1012058706090313, "_id": "1GPAxE6YRy", "elevation": -4337.818, "temperature": 96.27337449742413, "vertical_depth": 4362.818}, {"gradient": 3.10120587061577, "_id": "03bw5418Xo", "elevation": -4346.672, "temperature": 96.30083257420256, "vertical_depth": 4371.672}, {"gradient": 3.048582407036106, "_id": "WvBNJMQm4J", "elevation": -4355.525, "temperature": 96.32782167425205, "vertical_depth": 4380.525}, {"gradient": 3.048238090071157, "_id": "LakzBRlOE8", "elevation": -4364.379, "temperature": 96.35481077430154, "vertical_depth": 4389.379}, {"gradient": 2.995489978107052, "_id": "zKjldDPewZ", "elevation": -4373.232, "temperature": 96.38132984707772, "vertical_depth": 4398.232}, {"gradient": 2.995151657576364, "_id": "4aGv0A587g", "elevation": -4382.086, "temperature": 96.4078489198539, "vertical_depth": 4407.086}, {"gradient": 2.94194375940782, "_id": "4yrOdDlnQb", "elevation": -4390.94, "temperature": 96.4338968898997, "vertical_depth": 4415.94}, {"gradient": 2.942276069783662, "_id": "e60rbwdOav", "elevation": -4399.793, "temperature": 96.4599448599455, "vertical_depth": 4424.793}, {"gradient": 2.8886194034223127, "_id": "7l0xgaZvWl", "elevation": -4408.647, "temperature": 96.4855206961434, "vertical_depth": 4433.647}, {"gradient": 2.8886194034223127, "_id": "17138knazN", "elevation": -4417.501, "temperature": 96.5110965323413, "vertical_depth": 4442.501}, {"gradient": 2.835500151109089, "_id": "J4X6JV5pxw", "elevation": -4426.354, "temperature": 96.53619921517907, "vertical_depth": 4451.354}, {"gradient": 2.8351799003581166, "_id": "Wwzjn6Mm9R", "elevation": -4435.208, "temperature": 96.56130189801684, "vertical_depth": 4460.208}, {"gradient": 2.7819397466470916, "_id": "xb5jNPGLem", "elevation": -4444.061, "temperature": 96.5859304105939, "vertical_depth": 4469.061}, {"gradient": 2.7816255451847907, "_id": "5qlL3d47g6", "elevation": -4452.915, "temperature": 96.61055892317097, "vertical_depth": 4477.915}, {"gradient": 2.727953930930461, "_id": "n34xOrdRG7", "elevation": -4461.769, "temperature": 96.63471222727543, "vertical_depth": 4486.769}, {"gradient": 2.728262069858676, "_id": "WrKoLpQDqY", "elevation": -4470.622, "temperature": 96.65886553137989, "vertical_depth": 4495.622}, {"gradient": 2.651002476290744, "_id": "v8Bw72E3bk", "elevation": -4479.476, "temperature": 96.68233750730496, "vertical_depth": 4504.476}, {"gradient": 2.6510024762904716, "_id": "2yAbDaw1GZ", "elevation": -4488.33, "temperature": 96.70580948323004, "vertical_depth": 4513.33}, {"gradient": 2.5051845032826443, "_id": "oErRQG1JMb", "elevation": -4497.183, "temperature": 96.7279878816376, "vertical_depth": 4522.183}, {"gradient": 2.5049015594715094, "_id": "gqMmrQaNY4", "elevation": -4506.037, "temperature": 96.75016628004516, "vertical_depth": 4531.037}, {"gradient": 2.451335714230436, "_id": "N6o9LKm0Mm", "elevation": -4514.891, "temperature": 96.77187040645896, "vertical_depth": 4539.891}, {"gradient": 2.4516126074544844, "_id": "BqpDo0Z9PK", "elevation": -4523.744, "temperature": 96.79357453287275, "vertical_depth": 4548.744}, {"gradient": 2.396775460292419, "_id": "WNxvYqk3g1", "elevation": -4532.598, "temperature": 96.81479558279818, "vertical_depth": 4557.598}, {"gradient": 2.3970461906053955, "_id": "5nb18eWzK9", "elevation": -4541.451, "temperature": 96.83601663272361, "vertical_depth": 4566.451}, {"gradient": 2.278488853309193, "_id": "8vnrd7mbAo", "elevation": -4550.305, "temperature": 96.85619037303081, "vertical_depth": 4575.305}, {"gradient": 2.2784888533030068, "_id": "vLrE5a6vmL", "elevation": -4559.159, "temperature": 96.87636411333796, "vertical_depth": 4584.159}, {"gradient": 2.2248658375890695, "_id": "y2YloBveNx", "elevation": -4568.012, "temperature": 96.89606085059813, "vertical_depth": 4593.012}, {"gradient": 2.224614553900206, "_id": "8OV8Jr30xw", "elevation": -4576.866, "temperature": 96.91575758785837, "vertical_depth": 4601.866}, {"gradient": 2.1706362178863725, "_id": "MDjdVzabmw", "elevation": -4585.72, "temperature": 96.93497640093153, "vertical_depth": 4610.72}, {"gradient": 2.1708814044079103, "_id": "n0VGXnleY3", "elevation": -4594.573, "temperature": 96.95419521400476, "vertical_depth": 4619.573}, {"gradient": 2.116559202140601, "_id": "4W0nmJZGzk", "elevation": -4603.427, "temperature": 96.97293522918051, "vertical_depth": 4628.427}, {"gradient": 2.1167982803224374, "_id": "rkvye4EpbQ", "elevation": -4612.28, "temperature": 96.9916752443562, "vertical_depth": 4637.28}, {"gradient": 2.0623786489767157, "_id": "be3AjDbWbd", "elevation": -4621.134, "temperature": 97.00993554491424, "vertical_depth": 4646.134}, {"gradient": 2.062378648983136, "_id": "Wgb6MjOQOA", "elevation": -4629.988, "temperature": 97.02819584547234, "vertical_depth": 4654.988}, {"gradient": 2.0083031752583715, "_id": "LoPrbLOaXj", "elevation": -4638.841, "temperature": 97.0459753534829, "vertical_depth": 4663.841}, {"gradient": 2.008076350865573, "_id": "qrLVN6nAnw", "elevation": -4647.695, "temperature": 97.06375486149346, "vertical_depth": 4672.695}, {"gradient": 1.9536794172763883, "_id": "ep4yRE8wl0", "elevation": -4656.549, "temperature": 97.08105273905403, "vertical_depth": 4681.549}, {"gradient": 1.9539000972125133, "_id": "grPpmg9eBW", "elevation": -4665.402, "temperature": 97.09835061661465, "vertical_depth": 4690.402}, {"gradient": 1.8991921602010493, "_id": "xXMnkvz5y9", "elevation": -4674.256, "temperature": 97.11516606400107, "vertical_depth": 4699.256}, {"gradient": 1.8991921601948243, "_id": "EyDP7ZG0L8", "elevation": -4683.11, "temperature": 97.13198151138744, "vertical_depth": 4708.11}, {"gradient": 1.8448229431231067, "_id": "EVOb1KDP90", "elevation": -4691.963, "temperature": 97.1483137289029, "vertical_depth": 4716.963}, {"gradient": 1.8446145827274099, "_id": "PoQmPXDLP8", "elevation": -4700.817, "temperature": 97.16464594641837, "vertical_depth": 4725.817}, {"gradient": 1.7901494027997262, "_id": "99NrQm4aLm", "elevation": -4709.67, "temperature": 97.18049413908136, "vertical_depth": 4734.67}, {"gradient": 1.7899472174206523, "_id": "MRQ32yvoLv", "elevation": -4718.524, "temperature": 97.1963423317444, "vertical_depth": 4743.524}, {"gradient": 1.735197123047146, "_id": "1nDem9Blyy", "elevation": -4727.378, "temperature": 97.21170576707186, "vertical_depth": 4752.378}, {"gradient": 1.735393124083932, "_id": "KbGV4Eg6NG", "elevation": -4736.231, "temperature": 97.22706920239938, "vertical_depth": 4761.231}, {"gradient": 1.6803671375079436, "_id": "RMo7lPRzv6", "elevation": -4745.085, "temperature": 97.24194717303487, "vertical_depth": 4770.085}, {"gradient": 1.6803671375143636, "_id": "0lpOjM5oQE", "elevation": -4753.939, "temperature": 97.25682514367043, "vertical_depth": 4778.939}, {"gradient": 0.7961218431993952, "_id": "Z1aLyEkw5N", "elevation": -4754.027, "temperature": 97.25689520239263, "vertical_depth": 4779.027}, {"gradient": 0.7871766539481355, "_id": "XwrGE3da8b", "elevation": -4754.116, "temperature": 97.25696526111483, "vertical_depth": 4779.116}, {"gradient": 0.6026466460976037, "_id": "6xvwKZMdgL", "elevation": -4762.678, "temperature": 97.26212512169872, "vertical_depth": 4787.678}, {"gradient": 0.6026466461042427, "_id": "RzOGrNQ284", "elevation": -4771.24, "temperature": 97.26728498228266, "vertical_depth": 4796.24}, {"gradient": 0.5772805056788612, "_id": "2kKoRmg97M", "elevation": -4779.801, "temperature": 97.27222708069178, "vertical_depth": 4804.801}, {"gradient": 0.5772130821273046, "_id": "ZYrBx2oQ3D", "elevation": -4788.363, "temperature": 97.27716917910095, "vertical_depth": 4813.363}, {"gradient": 0.5517449765119544, "_id": "oXPZprR9wz", "elevation": -4796.925, "temperature": 97.28189321958985, "vertical_depth": 4821.925}, {"gradient": 0.5518094251717635, "_id": "eWavlM4G3k", "elevation": -4805.486, "temperature": 97.28661726007874, "vertical_depth": 4830.486}, {"gradient": 0.5262440888149533, "_id": "oVAyoakM17", "elevation": -4814.048, "temperature": 97.29112296196718, "vertical_depth": 4839.048}, {"gradient": 0.5262440888215925, "_id": "6z2DnAjVPK", "elevation": -4822.61, "temperature": 97.29562866385567, "vertical_depth": 4847.61}, {"gradient": 0.5007697065816737, "_id": "gBE3wldxvX", "elevation": -4831.171, "temperature": 97.29991575331371, "vertical_depth": 4856.171}, {"gradient": 0.500711219106426, "_id": "j47GqzXvep", "elevation": -4839.733, "temperature": 97.3042028427717, "vertical_depth": 4864.733}, {"gradient": 0.47514690180214475, "_id": "xXZl4vDN8M", "elevation": -4848.295, "temperature": 97.30827105054493, "vertical_depth": 4873.295}, {"gradient": 0.4752024031406265, "_id": "yzPN3bZgx8", "elevation": -4856.856, "temperature": 97.31233925831822, "vertical_depth": 4881.856}, {"gradient": 0.44322193770554746, "_id": "Dbk0xwNl6W", "elevation": -4865.418, "temperature": 97.31613412454885, "vertical_depth": 4890.418}, {"gradient": 0.44327370991446574, "_id": "RZYbzgjdbA", "elevation": -4873.979, "temperature": 97.31992899077943, "vertical_depth": 4898.979}, {"gradient": 0.41656978969693165, "_id": "pywjV1Q3jR", "elevation": -4882.541, "temperature": 97.32349566131882, "vertical_depth": 4907.541}, {"gradient": 0.41656978969029257, "_id": "NZGRk0NORj", "elevation": -4891.103, "temperature": 97.32706233185814, "vertical_depth": 4916.103}, {"gradient": 0.39122689763448626, "_id": "rO08xrK486", "elevation": -4899.664, "temperature": 97.3304116253288, "vertical_depth": 4924.664}, {"gradient": 0.39118120424031777, "_id": "Bn8WNlQjWo", "elevation": -4908.226, "temperature": 97.3337609187995, "vertical_depth": 4933.226}, {"gradient": 0.3657639787296859, "_id": "rroj8zqOWZ", "elevation": -4916.788, "temperature": 97.33689258998538, "vertical_depth": 4941.788}, {"gradient": 0.36580670317524966, "_id": "wVKeEOPkkN", "elevation": -4925.349, "temperature": 97.34002426117127, "vertical_depth": 4950.349}, {"gradient": 0.3403188624133466, "_id": "Ejeq7YPzyj", "elevation": -4933.911, "temperature": 97.34293807127125, "vertical_depth": 4958.911}, {"gradient": 0.3403188624133466, "_id": "Qgb1OZrYn6", "elevation": -4942.473, "temperature": 97.34585188137123, "vertical_depth": 4967.473}, {"gradient": 0.3148834471891706, "_id": "3aGPJY09zg", "elevation": -4951.034, "temperature": 97.34854759856262, "vertical_depth": 4976.034}, {"gradient": 0.3148466703324487, "_id": "7AdrqR2O87", "elevation": -4959.596, "temperature": 97.351243315754, "vertical_depth": 4984.596}, {"gradient": 0.2893482904911064, "_id": "67eEWd8pxM", "elevation": -4968.158, "temperature": 97.35372071581719, "vertical_depth": 4993.158}, {"gradient": 0.2893820889197546, "_id": "Nymkqz4Xny", "elevation": -4976.719, "temperature": 97.35619811588043, "vertical_depth": 5001.719}, {"gradient": 0.2595827537954818, "_id": "2WdEVLZBdn", "elevation": -4985.281, "temperature": 97.35842066341843, "vertical_depth": 5010.281}, {"gradient": 0.2595827537954818, "_id": "gGKMLEN3Dn", "elevation": -4993.843, "temperature": 97.36064321095643, "vertical_depth": 5018.843}, {"gradient": 0.17688145482912088, "_id": "aKMlxb2XQn", "elevation": -5002.404, "temperature": 97.36215749309122, "vertical_depth": 5027.404}, {"gradient": 0.17686079592798243, "_id": "dbB7DZApoB", "elevation": -5010.966, "temperature": 97.36367177522595, "vertical_depth": 5035.966}, {"gradient": 0.15133980040600167, "_id": "bJV4EopxVw", "elevation": -5019.528, "temperature": 97.36496754659703, "vertical_depth": 5044.528}, {"gradient": 0.15135747822406462, "_id": "2YonKZyaj6", "elevation": -5028.089, "temperature": 97.3662633179681, "vertical_depth": 5053.089}, {"gradient": 0.12579678147167642, "_id": "Y3rJv2ql4l", "elevation": -5036.651, "temperature": 97.36734039001107, "vertical_depth": 5061.651}, {"gradient": 0.12579678147167642, "_id": "Kw29vMxENG", "elevation": -5045.213, "temperature": 97.36841746205403, "vertical_depth": 5070.213}, {"gradient": 0.10024461466334691, "_id": "3o4RZE1KEj", "elevation": -5053.774, "temperature": 97.36927565620016, "vertical_depth": 5078.774}, {"gradient": 0.10023290657941877, "_id": "dkZqGW3lb5", "elevation": -5062.336, "temperature": 97.37013385034629, "vertical_depth": 5087.336}, {"gradient": 0.07464980751775847, "_id": "Kb3vXDP2bA", "elevation": -5070.898, "temperature": 97.37077300199826, "vertical_depth": 5095.898}, {"gradient": 0.07465852727100376, "_id": "Lx8X4yk0dx", "elevation": -5079.459, "temperature": 97.37141215365023, "vertical_depth": 5104.459}, {"gradient": 0.049049338469624296, "_id": "gBndoDgR9a", "elevation": -5088.021, "temperature": 97.3718321140862, "vertical_depth": 5113.021}, {"gradient": 0.049049338469624296, "_id": "WQ8gVwB3AY", "elevation": -5096.583, "temperature": 97.37225207452218, "vertical_depth": 5121.583}, {"gradient": 0.023436263660476048, "_id": "gmOKaExD91", "elevation": -5105.144, "temperature": 97.37245271237538, "vertical_depth": 5130.144}, {"gradient": 0.023433526418751693, "_id": "lyK5qbJvjd", "elevation": -5113.706, "temperature": 97.37265335022857, "vertical_depth": 5138.706}, {"gradient": -0.0021953319270433306, "_id": "gjWV2qlPZP", "elevation": -5122.268, "temperature": 97.37263455379662, "vertical_depth": 5147.268}, {"gradient": -0.0021955883610963022, "_id": "eMxvnYNe9P", "elevation": -5130.829, "temperature": 97.37261575736466, "vertical_depth": 5155.829}, {"gradient": -0.02783461626673305, "_id": "E8BXLQONwG", "elevation": -5139.391, "temperature": 97.37237743738018, "vertical_depth": 5164.391}, {"gradient": -0.02783786759441055, "_id": "n61ka8xKE7", "elevation": -5147.952, "temperature": 97.3721391173957, "vertical_depth": 5172.952}, {"gradient": -0.053481313540609934, "_id": "xLlGDn6Vyw", "elevation": -5156.514, "temperature": 97.37168121038917, "vertical_depth": 5181.514}, {"gradient": -0.053481313540609934, "_id": "WnJ49WXAxN", "elevation": -5165.076, "temperature": 97.37122330338264, "vertical_depth": 5190.076}, {"gradient": -0.07914117119596824, "_id": "GGA3QV4W5d", "elevation": -5173.637, "temperature": 97.37054577581603, "vertical_depth": 5198.637}, {"gradient": -0.07913192788505309, "_id": "yVKJZea2GO", "elevation": -5182.199, "temperature": 97.36986824824947, "vertical_depth": 5207.199}, {"gradient": -0.10478236134897276, "_id": "1gnLQ0GNkd", "elevation": -5190.761, "temperature": 97.3689711016716, "vertical_depth": 5215.761}, {"gradient": -0.10479460085584218, "_id": "VLyg56Y8Od", "elevation": -5199.322, "temperature": 97.36807395509368, "vertical_depth": 5224.322}, {"gradient": -2.212390338526558, "_id": "kAenOd0WGy", "elevation": -5199.411, "temperature": 97.36787705235355, "vertical_depth": 5224.411}, {"gradient": -2.212390338526558, "_id": "NxWbYKEGo1", "elevation": -5199.5, "temperature": 97.36768014961342, "vertical_depth": 5224.5}, {"gradient": -2.6477309375586526, "_id": "YajbgR2656", "elevation": -5207.184, "temperature": 97.34733498508922, "vertical_depth": 5232.184}, {"gradient": -2.6473864052313023, "_id": "09v7a4JVm9", "elevation": -5214.869, "temperature": 97.32698982056502, "vertical_depth": 5239.869}, {"gradient": -2.6717872768911475, "_id": "YWVlQKN8PR", "elevation": -5222.553, "temperature": 97.30645980712939, "vertical_depth": 5247.553}, {"gradient": -2.6717872768911475, "_id": "DVnb9OJkdM", "elevation": -5230.237, "temperature": 97.28592979369375, "vertical_depth": 5255.237}, {"gradient": -2.6806539411815846, "_id": "RWPwX6bB8j", "elevation": -5230.326, "temperature": 97.28569121549299, "vertical_depth": 5255.326}, {"gradient": -2.6806539411815846, "_id": "wyYLbWpmev", "elevation": -5230.415, "temperature": 97.28545263729222, "vertical_depth": 5255.415}, {"gradient": -2.69752479040171, "_id": "p1EGxJ2j67", "elevation": -5238.284, "temperature": 97.26422581471655, "vertical_depth": 5263.284}, {"gradient": -2.6971820299451146, "_id": "4YPm5BoM8J", "elevation": -5246.154, "temperature": 97.24299899214088, "vertical_depth": 5271.154}, {"gradient": -2.7219979773011067, "_id": "eWwengadA7", "elevation": -5254.023, "temperature": 97.2215795900575, "vertical_depth": 5279.023}, {"gradient": -2.7219979773011067, "_id": "60923Lepqa", "elevation": -5261.892, "temperature": 97.20016018797412, "vertical_depth": 5286.892}, {"gradient": -2.7460801986347163, "_id": "Ke6yo2LGrL", "elevation": -5269.762, "temperature": 97.17854853681087, "vertical_depth": 5294.762}, {"gradient": -2.7464291731164416, "_id": "AgRLzjqpeY", "elevation": -5277.631, "temperature": 97.15693688564761, "vertical_depth": 5302.631}, {"gradient": -2.7704501640836545, "_id": "2ybjoN9dq1", "elevation": -5285.501, "temperature": 97.13513344285627, "vertical_depth": 5310.501}, {"gradient": -2.770802235524072, "_id": "8A2kPJmwvn", "elevation": -5293.37, "temperature": 97.11333000006493, "vertical_depth": 5318.37}, {"gradient": -2.795094923655929, "_id": "ov9qmej35p", "elevation": -5301.239, "temperature": 97.09133539811069, "vertical_depth": 5326.239}, {"gradient": -2.794739765476777, "_id": "XlnVKZ0yvj", "elevation": -5309.109, "temperature": 97.06934079615638, "vertical_depth": 5334.109}, {"gradient": -2.8192748037150785, "_id": "qQwLX8O6je", "elevation": -5316.978, "temperature": 97.04715592272595, "vertical_depth": 5341.978}, {"gradient": -2.8192748037223025, "_id": "BrjKXB4xnN", "elevation": -5324.847, "temperature": 97.02497104929546, "vertical_depth": 5349.847}, {"gradient": -2.842929202568852, "_id": "vG8kemZ4zo", "elevation": -5332.717, "temperature": 97.00259719647124, "vertical_depth": 5357.717}, {"gradient": -2.8432904847212734, "_id": "Y0b2DnzaA4", "elevation": -5340.586, "temperature": 96.98022334364697, "vertical_depth": 5365.586}, {"gradient": 0.16714761649689408, "_id": "zGrALjNdVO", "elevation": -5340.675, "temperature": 96.98023821978484, "vertical_depth": 5365.675}, {"gradient": 0.167147615858204, "_id": "d7mLxoADnA", "elevation": -5340.764, "temperature": 96.98025309592265, "vertical_depth": 5365.764}, {"gradient": 0.761586157366382, "_id": "BQxjBLp14y", "elevation": -5346.928, "temperature": 96.98494751299665, "vertical_depth": 5371.928}, {"gradient": 0.761586157375604, "_id": "J1A5eaPreQ", "elevation": -5353.092, "temperature": 96.98964193007072, "vertical_depth": 5378.092}, {"gradient": 0.7411448059873743, "_id": "GJ6ng4rPaL", "elevation": -5359.256, "temperature": 96.99421034665482, "vertical_depth": 5384.256}, {"gradient": 0.74114480596904, "_id": "EVOlAz6M6X", "elevation": -5365.42, "temperature": 96.99877876323882, "vertical_depth": 5390.42}, {"gradient": 0.7206773265366391, "_id": "Y5mkWJNVN9", "elevation": -5371.584, "temperature": 97.00322101827959, "vertical_depth": 5396.584}, {"gradient": 0.7206773265366391, "_id": "eDvyzgL4ey", "elevation": -5377.748, "temperature": 97.00766327332036, "vertical_depth": 5402.748}, {"gradient": 0.7532684688167745, "_id": "LV9A6DOGXA", "elevation": -5377.837, "temperature": 97.00773031421409, "vertical_depth": 5402.837}, {"gradient": 0.7532684688244722, "_id": "W0VLo4WMoK", "elevation": -5377.926, "temperature": 97.00779735510781, "vertical_depth": 5402.926}, {"gradient": 0.6881579203211412, "_id": "1x9AKLrPNE", "elevation": -5386.599, "temperature": 97.01376574875076, "vertical_depth": 5411.599}, {"gradient": 0.6881579203211412, "_id": "O35REgZkEr", "elevation": -5395.272, "temperature": 97.0197341423937, "vertical_depth": 5420.272}, {"gradient": 0.5575084493920595, "_id": "mzZpya4L6L", "elevation": -5403.946, "temperature": 97.02456997068373, "vertical_depth": 5428.946}, {"gradient": 0.5575727303155583, "_id": "xaR0OZQ6OX", "elevation": -5412.619, "temperature": 97.02940579897376, "vertical_depth": 5437.619}, {"gradient": 0.4681976992702884, "_id": "JgvXN01wVD", "elevation": -5421.292, "temperature": 97.03346647761953, "vertical_depth": 5446.292}, {"gradient": 0.4681437221383889, "_id": "0neMXP5KXD", "elevation": -5429.966, "temperature": 97.03752715626536, "vertical_depth": 5454.966}, {"gradient": 0.39596438612647594, "_id": "kb0kOR43Ne", "elevation": -5438.639, "temperature": 97.04096135538623, "vertical_depth": 5463.639}, {"gradient": 0.39591873654807497, "_id": "DoRa1A8qj8", "elevation": -5447.313, "temperature": 97.04439555450705, "vertical_depth": 5472.313}, {"gradient": 0.32349091659665713, "_id": "z0QNWBdb5E", "elevation": -5455.986, "temperature": 97.04720119122669, "vertical_depth": 5480.986}, {"gradient": 0.3234909165901031, "_id": "ljBnGaP83A", "elevation": -5464.659, "temperature": 97.05000682794628, "vertical_depth": 5489.659}, {"gradient": 0.25074761325383704, "_id": "2gdvmX4jlY", "elevation": -5473.333, "temperature": 97.05218181274364, "vertical_depth": 5498.333}, {"gradient": 0.2507765245432498, "_id": "Omol4dre58", "elevation": -5482.006, "temperature": 97.054356797541, "vertical_depth": 5507.006}, {"gradient": 0.17782044163966965, "_id": "KR9ja8w0ld", "elevation": -5490.679, "temperature": 97.05589903423135, "vertical_depth": 5515.679}, {"gradient": 0.17779994124288895, "_id": "Nm5RX4M0Lw", "elevation": -5499.353, "temperature": 97.05744127092169, "vertical_depth": 5524.353}, {"gradient": 0.10462189748153553, "_id": "omAB6MJKzm", "elevation": -5508.026, "temperature": 97.05834865663854, "vertical_depth": 5533.026}, {"gradient": 0.10460983592350621, "_id": "5wxgGPEqMp", "elevation": -5516.7, "temperature": 97.05925604235534, "vertical_depth": 5541.7}, {"gradient": 0.031180119527945832, "_id": "mqN5zK9A4q", "elevation": -5525.373, "temperature": 97.05952646753201, "vertical_depth": 5550.373}, {"gradient": 0.031180119527942567, "_id": "7bRABl1Ygg", "elevation": -5534.046, "temperature": 97.05979689270868, "vertical_depth": 5559.046}, {"gradient": -0.04250076657784487, "_id": "RdyNA4BvmX", "elevation": -5542.72, "temperature": 97.05942824105938, "vertical_depth": 5567.72}, {"gradient": -0.0425056669314234, "_id": "qRk75NlG7G", "elevation": -5551.393, "temperature": 97.05905958941008, "vertical_depth": 5576.393}, {"gradient": -0.11643623869108925, "_id": "Q02qKaVd76", "elevation": -5560.066, "temperature": 97.05804973791192, "vertical_depth": 5585.066}, {"gradient": -0.11642281510544579, "_id": "057BmnE98r", "elevation": -5568.74, "temperature": 97.05703988641369, "vertical_depth": 5593.74}, {"gradient": -0.19061237475428924, "_id": "k8n52ErO5M", "elevation": -5577.413, "temperature": 97.05538670528745, "vertical_depth": 5602.413}, {"gradient": -0.19059039960651317, "_id": "GGql6v19Ra", "elevation": -5586.087, "temperature": 97.05373352416126, "vertical_depth": 5611.087}, {"gradient": -0.26503485621500816, "_id": "RQb3EL41lK", "elevation": -5594.76, "temperature": 97.0514348768533, "vertical_depth": 5619.76}, {"gradient": -0.26503485621500816, "_id": "MxaEpGd1Ar", "elevation": -5603.433, "temperature": 97.04913622954535, "vertical_depth": 5628.433}, {"gradient": -0.3396653028123515, "_id": "XDax6PBZXZ", "elevation": -5612.107, "temperature": 97.04618997270876, "vertical_depth": 5637.107}, {"gradient": -0.33970446634318074, "_id": "r4DKjZQ2VX", "elevation": -5620.78, "temperature": 97.04324371587217, "vertical_depth": 5645.78}, {"gradient": -0.41462199058464844, "_id": "Nj1p7Pw66Z", "elevation": -5629.453, "temperature": 97.03964769934782, "vertical_depth": 5654.453}, {"gradient": -0.4145741900258364, "_id": "2dAEwaXkgX", "elevation": -5638.127, "temperature": 97.03605168282354, "vertical_depth": 5663.127}, {"gradient": -0.4897882164958359, "_id": "K80LWDNrGG", "elevation": -5646.8, "temperature": 97.03180374962187, "vertical_depth": 5671.8}, {"gradient": -0.48978821650239, "_id": "pv3gNYeXXA", "elevation": -5655.473, "temperature": 97.02755581642015, "vertical_depth": 5680.473}, {"gradient": -0.5651387731521799, "_id": "9A3rvpdL3M", "elevation": -5664.147, "temperature": 97.02265380270183, "vertical_depth": 5689.147}, {"gradient": -0.5652039338481818, "_id": "qPa1ZxqMrO", "elevation": -5672.82, "temperature": 97.01775178898356, "vertical_depth": 5697.82}, {"gradient": -0.6407960505427945, "_id": "AWm7rXDN3y", "elevation": -5681.494, "temperature": 97.01219352404115, "vertical_depth": 5706.494}, {"gradient": -0.6408699345564105, "_id": "jmln3Rpvl1", "elevation": -5690.167, "temperature": 97.00663525909874, "vertical_depth": 5715.167}, {"gradient": -0.7167870127048684, "_id": "zw9lPq64DG", "elevation": -5698.84, "temperature": 97.00041856533755, "vertical_depth": 5723.84}, {"gradient": -0.7167043764340764, "_id": "pWqMX9dkWy", "elevation": -5707.514, "temperature": 96.99420187157637, "vertical_depth": 5732.514}]}, {"is_default": false, "name": "Anular A (Prod GL PA)", "calculated_from": "Daq40oro2q-5-a", "source": "GRADIENT", "_id": "Y8Nn1dPRjV", "data": [{"gradient": 0, "_id": "rzjnJNDq7J", "elevation": -2047.0, "temperature": 60.00247825806139, "vertical_depth": 2072.0}, {"gradient": 368.74787895933866, "_id": "8PVDdRAM6G", "elevation": -2053.685, "temperature": 62.467557828904546, "vertical_depth": 2078.685}, {"gradient": 368.80304770241963, "_id": "NdbkALxQyx", "elevation": -2060.369, "temperature": 64.93263739974759, "vertical_depth": 2085.369}, {"gradient": 290.43349097726986, "_id": "mgBQXnKpZX", "elevation": -2067.05, "temperature": 66.87302355296674, "vertical_depth": 2092.05}, {"gradient": 290.5204601316367, "_id": "wkyvjEp8Va", "elevation": -2073.729, "temperature": 68.81340970618584, "vertical_depth": 2098.729}, {"gradient": 228.40313922952086, "_id": "qGkdp0QOZz", "elevation": -2080.405, "temperature": 70.3382290636822, "vertical_depth": 2105.405}, {"gradient": 228.43735692830435, "_id": "eqEbjl9v7B", "elevation": -2087.08, "temperature": 71.86304842117858, "vertical_depth": 2112.08}, {"gradient": 242.64926590171186, "_id": "QmY36lRvJV", "elevation": -2087.18, "temperature": 71.88731334776872, "vertical_depth": 2112.18}, {"gradient": 299.79938180479235, "_id": "EAqpNlyLZW", "elevation": -2087.28, "temperature": 71.91729328594931, "vertical_depth": 2112.28}, {"gradient": 230.22373390236194, "_id": "ErE8XwJ9ew", "elevation": -2096.532, "temperature": 74.04732327201395, "vertical_depth": 2121.532}, {"gradient": 230.19885291957465, "_id": "N405bz8kGn", "elevation": -2105.785, "temperature": 76.17735325807871, "vertical_depth": 2130.785}, {"gradient": 147.39825436260017, "_id": "5XPbL9pyQL", "elevation": -2115.037, "temperature": 77.54108190744148, "vertical_depth": 2140.037}, {"gradient": 147.39825436259906, "_id": "Mm1wLeW9k0", "elevation": -2124.289, "temperature": 78.9048105568043, "vertical_depth": 2149.289}, {"gradient": 94.64556826097233, "_id": "o9dgpyJz59", "elevation": -2133.542, "temperature": 79.78056599992306, "vertical_depth": 2158.542}, {"gradient": 94.65579800244697, "_id": "BDMVmpNGwV", "elevation": -2142.794, "temperature": 80.65632144304169, "vertical_depth": 2167.794}, {"gradient": 5.442282453605405, "_id": "kVA3y61vqE", "elevation": -2142.894, "temperature": 80.65686567128705, "vertical_depth": 2167.894}, {"gradient": 5.44228245414909, "_id": "ZYBk3n1OQb", "elevation": -2142.994, "temperature": 80.65740989953247, "vertical_depth": 2167.994}, {"gradient": -4.44253112350424, "_id": "mB1NKqoxkk", "elevation": -2152.935, "temperature": 80.61324669763371, "vertical_depth": 2177.935}, {"gradient": -4.442531123504037, "_id": "knXQl6RovL", "elevation": -2162.876, "temperature": 80.56908349573496, "vertical_depth": 2187.876}, {"gradient": 1.100149564564377, "_id": "DgRobjKdP7", "elevation": -2172.816, "temperature": 80.58001898240673, "vertical_depth": 2197.816}, {"gradient": 1.1000388966672552, "_id": "MXL7pRV4wp", "elevation": -2182.757, "temperature": 80.5909544690785, "vertical_depth": 2207.757}, {"gradient": 4.209313554560538, "_id": "mklZMBgYgg", "elevation": -2192.698, "temperature": 80.63279925512438, "vertical_depth": 2217.698}, {"gradient": 4.209313554560346, "_id": "5ANoLBpyV4", "elevation": -2202.639, "temperature": 80.67464404117027, "vertical_depth": 2227.639}, {"gradient": 5.950912172719036, "_id": "DgwyZAoJNg", "elevation": -2212.58, "temperature": 80.73380205907927, "vertical_depth": 2237.58}, {"gradient": 5.950912172707327, "_id": "nY9vOdE8OJ", "elevation": -2222.521, "temperature": 80.79296007698815, "vertical_depth": 2247.521}, {"gradient": 6.921524136383804, "_id": "52WrG3EDBL", "elevation": -2232.462, "temperature": 80.86176694842794, "vertical_depth": 2257.462}, {"gradient": 6.921524136383804, "_id": "rE1ZyxAnkx", "elevation": -2242.403, "temperature": 80.93057381986773, "vertical_depth": 2267.403}, {"gradient": 7.423328491647139, "_id": "qAga0LGd0Z", "elevation": -2252.344, "temperature": 81.0043691284032, "vertical_depth": 2277.344}, {"gradient": 7.423328491647478, "_id": "YMKne0dr69", "elevation": -2262.285, "temperature": 81.07816443693866, "vertical_depth": 2287.285}, {"gradient": 7.659186521115302, "_id": "j9QX6n0jNz", "elevation": -2272.226, "temperature": 81.15430441014507, "vertical_depth": 2297.226}, {"gradient": 7.659186521104217, "_id": "awk7pBngRQ", "elevation": -2282.167, "temperature": 81.23044438335137, "vertical_depth": 2307.167}, {"gradient": 7.780808275478429, "_id": "47Q2j5bayb", "elevation": -2292.107, "temperature": 81.30778561760962, "vertical_depth": 2317.107}, {"gradient": 7.780025576734169, "_id": "qXqYDyrgAo", "elevation": -2302.048, "temperature": 81.38512685186794, "vertical_depth": 2327.048}, {"gradient": 7.836914721690723, "_id": "0Gmj1qx3zo", "elevation": -2311.989, "temperature": 81.46303362111627, "vertical_depth": 2336.989}, {"gradient": 7.836914721685365, "_id": "2WKOEYZd03", "elevation": -2321.93, "temperature": 81.54094039036454, "vertical_depth": 2346.93}, {"gradient": 7.857546562535336, "_id": "67nkJ6KM3v", "elevation": -2331.871, "temperature": 81.6190522607427, "vertical_depth": 2356.871}, {"gradient": 7.8575465625356955, "_id": "8wEdR7GBpZ", "elevation": -2341.812, "temperature": 81.69716413112087, "vertical_depth": 2366.812}, {"gradient": 7.857494832942792, "_id": "oA1xlaYnwV", "elevation": -2351.753, "temperature": 81.77527548725516, "vertical_depth": 2376.753}, {"gradient": 7.857494832943152, "_id": "MgXJjwNV49", "elevation": -2361.694, "temperature": 81.85338684338944, "vertical_depth": 2386.694}, {"gradient": 7.845851398103769, "_id": "3lreXQZvpy", "elevation": -2371.635, "temperature": 81.931382452138, "vertical_depth": 2396.635}, {"gradient": 7.845851398115566, "_id": "gW3OyvQ3M3", "elevation": -2381.576, "temperature": 82.00937806088666, "vertical_depth": 2406.576}, {"gradient": 7.827781594273784, "_id": "ZrBMZ0e9aJ", "elevation": -2391.517, "temperature": 82.08719403771534, "vertical_depth": 2416.517}, {"gradient": 7.828569097452084, "_id": "32578MO5jk", "elevation": -2401.457, "temperature": 82.16501001454401, "vertical_depth": 2426.457}, {"gradient": 7.805945507851331, "_id": "V4nvDxZn98", "elevation": -2411.398, "temperature": 82.24260891883756, "vertical_depth": 2436.398}, {"gradient": 7.805945507851687, "_id": "9w4eXgn4LL", "elevation": -2421.339, "temperature": 82.32020782313111, "vertical_depth": 2446.339}, {"gradient": 7.781917791708313, "_id": "YPXG7jkXZw", "elevation": -2431.28, "temperature": 82.39756786789849, "vertical_depth": 2456.28}, {"gradient": 7.781917791708668, "_id": "KmXMlyvXp4", "elevation": -2441.221, "temperature": 82.47492791266586, "vertical_depth": 2466.221}, {"gradient": 7.756617675758208, "_id": "GMKVjaZKNk", "elevation": -2451.162, "temperature": 82.55203644898057, "vertical_depth": 2476.162}, {"gradient": 7.756617675757853, "_id": "YNGADl4GA6", "elevation": -2461.103, "temperature": 82.62914498529528, "vertical_depth": 2486.103}, {"gradient": 7.7305690681288, "_id": "7naz84PBE8", "elevation": -2471.044, "temperature": 82.70599457240155, "vertical_depth": 2496.044}, {"gradient": 7.730569068128446, "_id": "dBql1G3qY3", "elevation": -2480.985, "temperature": 82.78284415950782, "vertical_depth": 2505.985}, {"gradient": 7.716130982644374, "_id": "NQdAZBNdA5", "elevation": -2490.926, "temperature": 82.85955021760628, "vertical_depth": 2515.926}, {"gradient": 7.716130982638302, "_id": "W4rV6NXrRd", "elevation": -2500.867, "temperature": 82.9362562757047, "vertical_depth": 2525.867}, {"gradient": 7.68764168458203, "_id": "LjKlrd5Koa", "elevation": -2510.808, "temperature": 83.01267912169112, "vertical_depth": 2535.808}, {"gradient": 7.68841508917787, "_id": "G5NvJZ4NWB", "elevation": -2520.748, "temperature": 83.08910196767755, "vertical_depth": 2545.748}, {"gradient": 7.655987368498847, "_id": "bArKLb87RY", "elevation": -2530.689, "temperature": 83.1652101381078, "vertical_depth": 2555.689}, {"gradient": 7.655987368498497, "_id": "KJNYALdNWJ", "elevation": -2540.63, "temperature": 83.24131830853804, "vertical_depth": 2565.63}, {"gradient": 7.626248077823315, "_id": "db2zYKwjaG", "elevation": -2550.571, "temperature": 83.31713084067968, "vertical_depth": 2575.571}, {"gradient": 7.626248077822966, "_id": "EPEXyn2EEP", "elevation": -2560.512, "temperature": 83.39294337282132, "vertical_depth": 2585.512}, {"gradient": 7.59742656054086, "_id": "BdLklVEL9V", "elevation": -2570.453, "temperature": 83.46846939025966, "vertical_depth": 2595.453}, {"gradient": 7.597426560535142, "_id": "KYOM261OX2", "elevation": -2580.394, "temperature": 83.54399540769793, "vertical_depth": 2605.394}, {"gradient": 7.569183426680339, "_id": "D8mnObJmm2", "elevation": -2590.335, "temperature": 83.61924066014257, "vertical_depth": 2615.335}, {"gradient": 7.569183426680685, "_id": "O8d312ZdRb", "elevation": -2600.276, "temperature": 83.6944859125872, "vertical_depth": 2625.276}, {"gradient": 7.541345219953579, "_id": "Y75L6p45Xz", "elevation": -2610.217, "temperature": 83.76945442541876, "vertical_depth": 2635.217}, {"gradient": 7.541345219948206, "_id": "2AjB8b1jkb", "elevation": -2620.158, "temperature": 83.84442293825026, "vertical_depth": 2645.158}, {"gradient": 7.513665739665288, "_id": "8PR3D5JRRz", "elevation": -2630.099, "temperature": 83.91911628936828, "vertical_depth": 2655.099}, {"gradient": 7.514421641645604, "_id": "2lkRo25kkd", "elevation": -2640.039, "temperature": 83.99380964048623, "vertical_depth": 2665.039}, {"gradient": 7.486510662685718, "_id": "4OvaRQNvrj", "elevation": -2649.98, "temperature": 84.06823304298399, "vertical_depth": 2674.98}, {"gradient": 7.486510662685718, "_id": "PPLGlnYLMO", "elevation": -2659.921, "temperature": 84.14265644548175, "vertical_depth": 2684.921}, {"gradient": 7.459324660375367, "_id": "l2J7WMGJ2M", "elevation": -2669.862, "temperature": 84.21680959193054, "vertical_depth": 2694.862}, {"gradient": 7.45932466036999, "_id": "yVaB6bEaVm", "elevation": -2679.803, "temperature": 84.29096273837928, "vertical_depth": 2704.803}, {"gradient": 7.429808319675299, "_id": "y2Xn3mwX2q", "elevation": -2689.744, "temperature": 84.36482246288517, "vertical_depth": 2714.744}, {"gradient": 7.42980831966992, "_id": "pL5wKmG547", "elevation": -2699.685, "temperature": 84.43868218739101, "vertical_depth": 2724.685}, {"gradient": 7.369248296380273, "_id": "2koLz9pokA", "elevation": -2709.626, "temperature": 84.51193988470533, "vertical_depth": 2734.626}, {"gradient": 7.36924829638061, "_id": "LevMGBNv64", "elevation": -2719.567, "temperature": 84.58519758201965, "vertical_depth": 2744.567}, {"gradient": 7.306540074452753, "_id": "kQd2G7yde1", "elevation": -2729.508, "temperature": 84.65783189689978, "vertical_depth": 2754.508}, {"gradient": 7.306540074440983, "_id": "v3NxzDvNZk", "elevation": -2739.449, "temperature": 84.7304662117798, "vertical_depth": 2764.449}, {"gradient": 7.25909190468181, "_id": "JZMJ54oM4V", "elevation": -2749.39, "temperature": 84.80262884440424, "vertical_depth": 2774.39}, {"gradient": 7.259822195611993, "_id": "rOg6kJmgXR", "elevation": -2759.33, "temperature": 84.87479147702862, "vertical_depth": 2784.33}, {"gradient": 7.200928327792062, "_id": "P9v23pbv0m", "elevation": -2769.271, "temperature": 84.9463759055352, "vertical_depth": 2794.271}, {"gradient": 7.200928327792392, "_id": "KYoXRMKovd", "elevation": -2779.212, "temperature": 85.01796033404179, "vertical_depth": 2804.212}, {"gradient": 7.1143743696412995, "_id": "GYBPVeRBg2", "elevation": -2789.153, "temperature": 85.08868432965039, "vertical_depth": 2814.153}, {"gradient": 7.1143743696409745, "_id": "VvPWGwLjpn", "elevation": -2799.094, "temperature": 85.159408325259, "vertical_depth": 2824.094}, {"gradient": 7.051368897722914, "_id": "dJBOazLBwV", "elevation": -2809.035, "temperature": 85.22950598347126, "vertical_depth": 2834.035}, {"gradient": 7.0513688977283095, "_id": "ejnb5aMnZJ", "elevation": -2818.976, "temperature": 85.29960364168358, "vertical_depth": 2843.976}, {"gradient": -27.705294796217192, "_id": "NMb8WP5bwV", "elevation": -2819.076, "temperature": 85.29683311220396, "vertical_depth": 2844.076}, {"gradient": -4.697380982752018, "_id": "Rr10Egq1Op", "elevation": -2819.176, "temperature": 85.29636337410568, "vertical_depth": 2844.176}, {"gradient": -15.957021109403419, "_id": "8m0dNvX0Ae", "elevation": -2828.53, "temperature": 85.14710139864832, "vertical_depth": 2853.53}, {"gradient": -15.958727195271045, "_id": "vled4gLeNv", "elevation": -2837.883, "temperature": 84.99783942319095, "vertical_depth": 2862.883}, {"gradient": -8.567392888834823, "_id": "91JrDRaJxb", "elevation": -2847.237, "temperature": 84.91770003010879, "vertical_depth": 2872.237}, {"gradient": -8.567392888841315, "_id": "KdL5r67LAg", "elevation": -2856.591, "temperature": 84.83756063702657, "vertical_depth": 2881.591}, {"gradient": -3.735528583244294, "_id": "5vroajOre4", "elevation": -2865.945, "temperature": 84.8026185026589, "vertical_depth": 2890.945}, {"gradient": -3.735528583238399, "_id": "1z8LlOP8Qj", "elevation": -2875.299, "temperature": 84.76767636829129, "vertical_depth": 2900.299}, {"gradient": 59.54850152653266, "_id": "1O56vam5pM", "elevation": -2875.399, "temperature": 84.77363121844394, "vertical_depth": 2900.399}, {"gradient": -9.403279221065818, "_id": "PLkP3XqkoK", "elevation": -2875.498, "temperature": 84.77270029380105, "vertical_depth": 2900.498}, {"gradient": 25.72368230138272, "_id": "gWjyJkLj4O", "elevation": -2883.604, "temperature": 84.98121646253605, "vertical_depth": 2908.604}, {"gradient": 25.72368230138829, "_id": "rknVl41nAJ", "elevation": -2891.71, "temperature": 85.18973263127111, "vertical_depth": 2916.71}, {"gradient": 18.651425926017556, "_id": "1WP04N9P7a", "elevation": -2899.815, "temperature": 85.34090243840149, "vertical_depth": 2924.815}, {"gradient": 18.649124985235645, "_id": "8olBXW4lnR", "elevation": -2907.921, "temperature": 85.4920722455318, "vertical_depth": 2932.921}, {"gradient": 14.216289847376197, "_id": "WP8gm1G828", "elevation": -2916.026, "temperature": 85.60729527474479, "vertical_depth": 2941.026}, {"gradient": 14.214536048980756, "_id": "zNKP0MJK73", "elevation": -2924.132, "temperature": 85.72251830395783, "vertical_depth": 2949.132}, {"gradient": -40.927631783953004, "_id": "3lkBzJ3kP9", "elevation": -2924.232, "temperature": 85.71842554077944, "vertical_depth": 2949.232}, {"gradient": 19.599034682970906, "_id": "RNMaW9DMRB", "elevation": -2924.331, "temperature": 85.72036584521305, "vertical_depth": 2949.331}, {"gradient": -11.98102461429236, "_id": "Pq6wOWb621", "elevation": -2932.568, "temperature": 85.62167814546513, "vertical_depth": 2957.568}, {"gradient": -11.981024614293021, "_id": "DmYlJe1YWn", "elevation": -2940.805, "temperature": 85.5229904457172, "vertical_depth": 2965.805}, {"gradient": -6.596080820982839, "_id": "o6aqMgGaQN", "elevation": -2949.042, "temperature": 85.46865852799476, "vertical_depth": 2974.042}, {"gradient": -6.595280131388378, "_id": "Domk8jxmr4", "elevation": -2957.28, "temperature": 85.41432661027238, "vertical_depth": 2982.28}, {"gradient": -2.8926252964114374, "_id": "05PLoX7PNz", "elevation": -2965.517, "temperature": 85.39050005570584, "vertical_depth": 2990.517}, {"gradient": -2.8926252964112775, "_id": "PmGOx4pGll", "elevation": -2973.754, "temperature": 85.3666735011393, "vertical_depth": 2998.754}, {"gradient": 11.78400490843018, "_id": "Eyz3WkXzn7", "elevation": -2976.355, "temperature": 85.39732369790613, "vertical_depth": 3001.355}, {"gradient": 11.784004908408326, "_id": "Y39Nq0K9DR", "elevation": -2978.956, "temperature": 85.4279738946729, "vertical_depth": 3003.956}, {"gradient": -3366.919158625243, "_id": "YVzxj7kzB0", "elevation": -2979.056, "temperature": 85.09128197881068, "vertical_depth": 3004.056}, {"gradient": -11.477024094130208, "_id": "GyJrq61JGl", "elevation": -2979.156, "temperature": 85.09013427640127, "vertical_depth": 3004.156}, {"gradient": -11.492580300935822, "_id": "vDOPv7qOrV", "elevation": -2987.456, "temperature": 84.9947458599035, "vertical_depth": 3012.456}, {"gradient": -11.4925803009433, "_id": "8Dgpo9ayGk", "elevation": -2995.756, "temperature": 84.89935744340568, "vertical_depth": 3020.756}, {"gradient": -11.492580300935822, "_id": "jz5Dwpl5N0", "elevation": -3004.056, "temperature": 84.80396902690791, "vertical_depth": 3029.056}, {"gradient": -11.385674142359766, "_id": "QbJpnYAJBO", "elevation": -3012.356, "temperature": 84.70946793152632, "vertical_depth": 3037.356}, {"gradient": 6.872209369096281, "_id": "xJN18g9NyE", "elevation": -3020.655, "temperature": 84.76650039708045, "vertical_depth": 3045.655}, {"gradient": 6.8507114136643334, "_id": "AE9NRxk9kq", "elevation": -3028.955, "temperature": 84.82336130181386, "vertical_depth": 3053.955}, {"gradient": 9.027297468264608, "_id": "GX8GAd1813", "elevation": -3037.255, "temperature": 84.89828787080046, "vertical_depth": 3062.255}, {"gradient": 11.781858237321007, "_id": "kXzBYlDzoo", "elevation": -3045.555, "temperature": 84.99607729417022, "vertical_depth": 3070.555}, {"gradient": 16827.40003179578, "_id": "xyE2dw0EDW", "elevation": -3045.655, "temperature": 86.67881729735592, "vertical_depth": 3070.655}, {"gradient": 11.765910467158179, "_id": "VE2j10J21p", "elevation": -3045.755, "temperature": 86.67999388840263, "vertical_depth": 3070.755}, {"gradient": 11.782040977972791, "_id": "edPpAbOPq0", "elevation": -3055.689, "temperature": 86.79703668347781, "vertical_depth": 3080.689}, {"gradient": 11.782040977966531, "_id": "R021D532DJ", "elevation": -3065.623, "temperature": 86.91407947855294, "vertical_depth": 3090.623}, {"gradient": 11.782040977972791, "_id": "Ed76elm7ep", "elevation": -3075.557, "temperature": 87.03112227362811, "vertical_depth": 3100.557}, {"gradient": 11.782040977966531, "_id": "rl6X9Z76BW", "elevation": -3085.491, "temperature": 87.14816506870324, "vertical_depth": 3110.491}, {"gradient": 5.090700667579167, "_id": "1Q7AEKM7vo", "elevation": -3095.425, "temperature": 87.19873608913497, "vertical_depth": 3120.425}, {"gradient": 6.812549297185562, "_id": "WagdEMJg2r", "elevation": -3105.359, "temperature": 87.26641195385321, "vertical_depth": 3130.359}, {"gradient": 6.781480112971588, "_id": "GojWkYZjJb", "elevation": -3115.293, "temperature": 87.33377917729547, "vertical_depth": 3140.293}, {"gradient": 5.0567157624346395, "_id": "kmqdQW9qXa", "elevation": -3125.227, "temperature": 87.3840125916795, "vertical_depth": 3150.227}, {"gradient": 5.0227045517358455, "_id": "g0ZKgDnZL8", "elevation": -3135.161, "temperature": 87.43390813869644, "vertical_depth": 3160.161}, {"gradient": 6.753021075096616, "_id": "wOonM32o8V", "elevation": -3145.095, "temperature": 87.50099265005645, "vertical_depth": 3170.095}, {"gradient": 4.974476206863818, "_id": "9VG4YQZGrQ", "elevation": -3155.029, "temperature": 87.55040909669543, "vertical_depth": 3180.029}, {"gradient": 6.712076361791563, "_id": "kzZky71Z8E", "elevation": -3164.963, "temperature": 87.61708686327347, "vertical_depth": 3189.963}, {"gradient": 4.868445404280053, "_id": "y4ORLpVODe", "elevation": -3174.897, "temperature": 87.66544999991959, "vertical_depth": 3199.897}, {"gradient": 6.61712770562222, "_id": "xrZ2OVPZXG", "elevation": -3184.831, "temperature": 87.73118454654724, "vertical_depth": 3209.831}, {"gradient": 4.834447974522802, "_id": "8eOEXMAOdL", "elevation": -3194.765, "temperature": 87.77920995272615, "vertical_depth": 3219.765}, {"gradient": 6.589247379064314, "_id": "Wovj5x9Y4z", "elevation": -3204.699, "temperature": 87.84466753618977, "vertical_depth": 3229.699}, {"gradient": 6.562520695122767, "_id": "zDjmV36j7a", "elevation": -3214.633, "temperature": 87.90985961677512, "vertical_depth": 3239.633}, {"gradient": 4.80052661161106, "_id": "w9MDOboMkW", "elevation": -3224.567, "temperature": 87.95754804813487, "vertical_depth": 3249.567}, {"gradient": 4.766255005576664, "_id": "rBQ3PjZQpp", "elevation": -3234.501, "temperature": 88.00489602536027, "vertical_depth": 3259.501}, {"gradient": 6.534761146992878, "_id": "eX3xk7l3ZW", "elevation": -3244.434, "temperature": 88.06980580783335, "vertical_depth": 3269.434}, {"gradient": 6.505653639979887, "_id": "JoAeREO5Vl", "elevation": -3254.368, "temperature": 88.1344329710929, "vertical_depth": 3279.368}, {"gradient": 4.731894802487829, "_id": "jLdZ1g6bNR", "elevation": -3264.302, "temperature": 88.18143961406082, "vertical_depth": 3289.302}, {"gradient": 6.47717271933386, "_id": "q7Y9O6QYlj", "elevation": -3274.236, "temperature": 88.24578384785468, "vertical_depth": 3299.236}, {"gradient": 4.697445977064279, "_id": "R9yLeDmM0A", "elevation": -3284.17, "temperature": 88.29244827619084, "vertical_depth": 3309.17}, {"gradient": 6.448661693551454, "_id": "bRwl6nPKrA", "elevation": -3294.104, "temperature": 88.35650928145458, "vertical_depth": 3319.104}, {"gradient": 4.662908506125759, "_id": "8yD80AkpQD", "elevation": -3304.038, "temperature": 88.40283061455443, "vertical_depth": 3329.038}, {"gradient": 6.401089405750494, "_id": "gA1BEjZw6x", "elevation": -3313.972, "temperature": 88.46641903671116, "vertical_depth": 3338.972}, {"gradient": 4.607009258283515, "_id": "nY4pRvBGOB", "elevation": -3323.906, "temperature": 88.51218506668295, "vertical_depth": 3348.906}, {"gradient": 4.454014195971837, "_id": "w4AELzZ1ky", "elevation": -3333.84, "temperature": 88.55643124370573, "vertical_depth": 3358.84}, {"gradient": 6.2614742102395695, "_id": "7aB5lzn4MG", "elevation": -3343.774, "temperature": 88.61863272851025, "vertical_depth": 3368.774}, {"gradient": 4.419312988990093, "_id": "jvO6DaZq0M", "elevation": -3353.708, "temperature": 88.66253418374288, "vertical_depth": 3378.708}, {"gradient": 6.236760951980079, "_id": "WW2ZqLBJ3A", "elevation": -3363.642, "temperature": 88.72449016703985, "vertical_depth": 3388.642}, {"gradient": 6.20756941563541, "_id": "5qVnN6DmKp", "elevation": -3373.576, "temperature": 88.78615616161477, "vertical_depth": 3398.576}, {"gradient": 4.384618327916562, "_id": "1BQnJdq5nR", "elevation": -3383.51, "temperature": 88.8297129600843, "vertical_depth": 3408.51}, {"gradient": 4.3502100761056415, "_id": "m3gMWvND7v", "elevation": -3393.444, "temperature": 88.87292794698033, "vertical_depth": 3418.444}, {"gradient": 6.157904489772448, "_id": "Z9NAbq1vX2", "elevation": -3403.378, "temperature": 88.93410057018173, "vertical_depth": 3428.378}, {"gradient": 6.129739266597328, "_id": "jvPpMax1ek", "elevation": -3413.312, "temperature": 88.9949934000561, "vertical_depth": 3438.312}, {"gradient": 4.315212583274342, "_id": "QlqvO9KX4B", "elevation": -3423.246, "temperature": 89.03786072185835, "vertical_depth": 3448.246}, {"gradient": 4.280072892305246, "_id": "yoLZealYPA", "elevation": -3433.18, "temperature": 89.08037896597051, "vertical_depth": 3458.18}, {"gradient": 6.10150200961477, "_id": "0XBaMqbJ2j", "elevation": -3443.114, "temperature": 89.14099128693402, "vertical_depth": 3468.114}, {"gradient": 4.244977667160438, "_id": "RMOVrbQnOP", "elevation": -3453.048, "temperature": 89.1831608950796, "vertical_depth": 3478.048}, {"gradient": 6.073153657182894, "_id": "ZrJnQ01l84", "elevation": -3462.982, "temperature": 89.24349160351005, "vertical_depth": 3487.982}, {"gradient": -8411.212451505582, "_id": "NKXwaR2eXJ", "elevation": -3463.082, "temperature": 88.40237035836026, "vertical_depth": 3488.082}, {"gradient": -1634.8582559525173, "_id": "WMbdD9mGbL", "elevation": -3463.182, "temperature": 88.23888453276516, "vertical_depth": 3488.182}, {"gradient": 8.134054974335424, "_id": "xom02Z6NN8", "elevation": -3473.132, "temperature": 88.3198183797598, "vertical_depth": 3498.132}, {"gradient": 5.872538275860903, "_id": "opYW0Omo3r", "elevation": -3483.081, "temperature": 88.37824426306634, "vertical_depth": 3508.081}, {"gradient": 5.825492664414792, "_id": "o3jrNlB53M", "elevation": -3493.031, "temperature": 88.43620791507726, "vertical_depth": 3518.031}, {"gradient": 8.097740350457297, "_id": "zqJPeykMqN", "elevation": -3502.981, "temperature": 88.51678043156431, "vertical_depth": 3527.981}, {"gradient": 8.062531600976934, "_id": "71NwRLM2EY", "elevation": -3512.931, "temperature": 88.59700262099403, "vertical_depth": 3537.931}, {"gradient": 5.779413877983303, "_id": "wnAR39Pbnz", "elevation": -3522.88, "temperature": 88.65450200966609, "vertical_depth": 3547.88}, {"gradient": 5.733189671160566, "_id": "XmlVRLv21a", "elevation": -3532.828, "temperature": 88.7115357805148, "vertical_depth": 3557.828}, {"gradient": 8.037356703651366, "_id": "V3Lyl20W24", "elevation": -3542.776, "temperature": 88.79149140500272, "vertical_depth": 3567.776}, {"gradient": 7.97327916547407, "_id": "e60BzQ8gQY", "elevation": -3552.718, "temperature": 88.87076174646586, "vertical_depth": 3577.718}, {"gradient": 5.692391375489252, "_id": "9gDpa4n37g", "elevation": -3562.654, "temperature": 88.92732134717272, "vertical_depth": 3587.654}, {"gradient": 5.648542975494824, "_id": "mOZjQJvWKq", "elevation": -3572.579, "temperature": 88.98338313620451, "vertical_depth": 3597.579}, {"gradient": 7.940234773366629, "_id": "qje8BgbZgp", "elevation": -3582.495, "temperature": 89.06211850421721, "vertical_depth": 3607.495}, {"gradient": 7.902970802347446, "_id": "3qXpGzgQlj", "elevation": -3592.398, "temperature": 89.14038162407286, "vertical_depth": 3617.398}, {"gradient": 5.617614511378064, "_id": "ZzyALMmrO5", "elevation": -3602.287, "temperature": 89.19593421397587, "vertical_depth": 3627.287}, {"gradient": 7.872077735290859, "_id": "z1YdAW7PnX", "elevation": -3612.162, "temperature": 89.27367098161187, "vertical_depth": 3637.162}, {"gradient": 5.582290093611525, "_id": "KjKnAd2Nlr", "elevation": -3622.021, "temperature": 89.32870677964479, "vertical_depth": 3647.021}, {"gradient": 5.4948881558530225, "_id": "OVjdPem4pk", "elevation": -3631.862, "temperature": 89.38278197398654, "vertical_depth": 3656.862}, {"gradient": 7.820937171001487, "_id": "GKlM6rbdQ2", "elevation": -3641.685, "temperature": 89.45960703981729, "vertical_depth": 3666.685}, {"gradient": 5.428991663683801, "_id": "ayk2A9X8ze", "elevation": -3651.488, "temperature": 89.51282744509638, "vertical_depth": 3676.488}, {"gradient": 7.768912155538743, "_id": "l24QzoGlJm", "elevation": -3661.27, "temperature": 89.58882294380186, "vertical_depth": 3686.27}, {"gradient": 7.728916545154096, "_id": "zp3D6vawGQ", "elevation": -3671.03, "temperature": 89.66425716928256, "vertical_depth": 3696.03}, {"gradient": 5.411545121815345, "_id": "ekv6x1nEpb", "elevation": -3680.765, "temperature": 89.71693856104343, "vertical_depth": 3705.765}, {"gradient": 7.708670700862756, "_id": "m1JjLApVX4", "elevation": -3690.475, "temperature": 89.79178975354881, "vertical_depth": 3715.475}, {"gradient": 5.384180214336103, "_id": "KVJW8RK4GG", "elevation": -3700.158, "temperature": 89.84392477056423, "vertical_depth": 3725.158}, {"gradient": 5.3419254691853455, "_id": "OZyv42GBqD", "elevation": -3709.814, "temperature": 89.89550640289468, "vertical_depth": 3734.814}, {"gradient": 7.713207428676918, "_id": "20RZVy9DlB", "elevation": -3719.44, "temperature": 89.96975373760313, "vertical_depth": 3744.44}, {"gradient": 7.673729227566538, "_id": "EXGogyk8Av", "elevation": -3729.036, "temperature": 90.04339084327086, "vertical_depth": 3754.036}, {"gradient": 5.334820434230549, "_id": "WaAmy29z5R", "elevation": -3738.6, "temperature": 90.09441306590384, "vertical_depth": 3763.6}, {"gradient": 5.293287814743235, "_id": "v5vdKEW97z", "elevation": -3748.132, "temperature": 90.14486868535397, "vertical_depth": 3773.132}, {"gradient": 7.684781088733206, "_id": "lDBWYk1RxV", "elevation": -3757.63, "temperature": 90.21785873613476, "vertical_depth": 3782.63}, {"gradient": 7.6442468007831925, "_id": "O4PWejpaAd", "elevation": -3767.091, "temperature": 90.29018095511697, "vertical_depth": 3792.091}, {"gradient": 5.292621901452415, "_id": "j68NBx5OJL", "elevation": -3776.516, "temperature": 90.34006391653816, "vertical_depth": 3801.516}, {"gradient": 7.62988944232202, "_id": "x3qMVzjZRx", "elevation": -3785.902, "temperature": 90.41167805884379, "vertical_depth": 3810.902}, {"gradient": 5.2748442196042715, "_id": "9deJk78W6B", "elevation": -3795.249, "temperature": 90.46098202776443, "vertical_depth": 3820.249}, {"gradient": 7.614970699372649, "_id": "QXaLNZk1bN", "elevation": -3804.556, "temperature": 90.5318545600635, "vertical_depth": 3829.556}, {"gradient": 5.258571024993535, "_id": "d0gm4rOqWr", "elevation": -3813.821, "temperature": 90.58057522061006, "vertical_depth": 3838.821}, {"gradient": 5.2198175452121145, "_id": "jjKAz57wam", "elevation": -3823.042, "temperature": 90.62870715819446, "vertical_depth": 3848.042}, {"gradient": 7.642766374117674, "_id": "2EwbL7pjW1", "elevation": -3832.22, "temperature": 90.69885246797611, "vertical_depth": 3857.22}, {"gradient": 5.2063264300792955, "_id": "aKXn9x3LAO", "elevation": -3841.351, "temperature": 90.74639143460917, "vertical_depth": 3866.351}, {"gradient": 7.639858304627902, "_id": "2AZoY0b6JN", "elevation": -3850.436, "temperature": 90.81579954730671, "vertical_depth": 3875.436}, {"gradient": 7.5968318277365725, "_id": "D7mDlzMXBx", "elevation": -3859.473, "temperature": 90.88445211653396, "vertical_depth": 3884.473}, {"gradient": 5.223421120482946, "_id": "E7KRXByWp7", "elevation": -3868.46, "temperature": 90.93139500214374, "vertical_depth": 3893.46}, {"gradient": 7.511135370687211, "_id": "RR9qrwPoG9", "elevation": -3877.397, "temperature": 90.99852201895158, "vertical_depth": 3902.397}, {"gradient": 5.120699091549016, "_id": "R85oOZe2n1", "elevation": -3886.282, "temperature": 91.04401943037999, "vertical_depth": 3911.282}, {"gradient": 5.02880089972261, "_id": "Z8O7LZMKg5", "elevation": -3895.136, "temperature": 91.08854443354613, "vertical_depth": 3920.136}, {"gradient": 7.470007336593362, "_id": "RwrNxy40mA", "elevation": -3903.99, "temperature": 91.15468387850433, "vertical_depth": 3928.99}, {"gradient": 7.432482012390181, "_id": "J8OvEDWagN", "elevation": -3912.844, "temperature": 91.22049107424203, "vertical_depth": 3937.844}, {"gradient": 4.980806939073859, "_id": "D1N9AeEzw0", "elevation": -3921.697, "temperature": 91.26458615807366, "vertical_depth": 3946.697}, {"gradient": 4.931648723194261, "_id": "Mzv6aBk0Me", "elevation": -3930.551, "temperature": 91.30825097586882, "vertical_depth": 3955.551}, {"gradient": 7.395904204734029, "_id": "G7RmleLw5G", "elevation": -3939.404, "temperature": 91.37372691579333, "vertical_depth": 3964.404}, {"gradient": 7.357648065157645, "_id": "zPZKJGlMD0", "elevation": -3948.258, "temperature": 91.43887153176223, "vertical_depth": 3973.258}, {"gradient": 4.8829197920063665, "_id": "oP913k6Gv8", "elevation": -3957.112, "temperature": 91.48210490360066, "vertical_depth": 3982.112}, {"gradient": 4.834664656159873, "_id": "24eoV1Y8AN", "elevation": -3965.965, "temperature": 91.52490618980164, "vertical_depth": 3990.965}, {"gradient": 7.321653934202385, "_id": "LKRwYlbgXV", "elevation": -3974.819, "temperature": 91.58973211373507, "vertical_depth": 3999.819}, {"gradient": 4.785175850809127, "_id": "zAPVBX4Egx", "elevation": -3983.673, "temperature": 91.63210006071813, "vertical_depth": 4008.673}, {"gradient": 7.282856569138636, "_id": "xmN3XwORb0", "elevation": -3992.526, "temperature": 91.69657518992472, "vertical_depth": 4017.526}, {"gradient": 4.7359269428807105, "_id": "Lgj26ZN50Y", "elevation": -4001.38, "temperature": 91.73850708707698, "vertical_depth": 4026.38}, {"gradient": 7.2490030503108915, "_id": "JBgKz1lLEG", "elevation": -4010.234, "temperature": 91.80268976008443, "vertical_depth": 4035.234}, {"gradient": 4.687383793691065, "_id": "9AOM1DjmjA", "elevation": -4019.087, "temperature": 91.84418716880998, "vertical_depth": 4044.087}, {"gradient": 7.204796572218693, "_id": "GPy0w2WvWD", "elevation": -4027.941, "temperature": 91.9079784376604, "vertical_depth": 4052.941}, {"gradient": 7.154170697927015, "_id": "ogdmjbJOXX", "elevation": -4036.794, "temperature": 91.97131431084915, "vertical_depth": 4061.794}, {"gradient": 4.637811789126158, "_id": "b1A6vpanrk", "elevation": -4045.648, "temperature": 92.01237749643008, "vertical_depth": 4070.648}, {"gradient": 7.116380193564849, "_id": "x1rqKdbBYA", "elevation": -4054.502, "temperature": 92.0753859266639, "vertical_depth": 4079.502}, {"gradient": 4.5887358217998, "_id": "NRmDxqvyxJ", "elevation": -4063.355, "temperature": 92.11601000489429, "vertical_depth": 4088.355}, {"gradient": 4.538418862630423, "_id": "nrPQbGjxbB", "elevation": -4072.209, "temperature": 92.15619316550402, "vertical_depth": 4097.209}, {"gradient": 7.079437524099336, "_id": "2ODlg4j78D", "elevation": -4081.063, "temperature": 92.2188745053424, "vertical_depth": 4106.063}, {"gradient": 7.0079871817421315, "_id": "RJzGNgMLNj", "elevation": -4089.916, "temperature": 92.28091621586236, "vertical_depth": 4114.916}, {"gradient": 4.447175914266239, "_id": "lLAol3kpOg", "elevation": -4098.77, "temperature": 92.32029151140728, "vertical_depth": 4123.77}, {"gradient": 6.944782632406254, "_id": "Ezr6AyYG4E", "elevation": -4107.623, "temperature": 92.38177367205196, "vertical_depth": 4132.623}, {"gradient": 4.3675767007899315, "_id": "oKz0yXY8jm", "elevation": -4116.477, "temperature": 92.42044419616076, "vertical_depth": 4141.477}, {"gradient": 4.317544942350391, "_id": "wwbM9YB1aK", "elevation": -4125.331, "temperature": 92.45867173908033, "vertical_depth": 4150.331}, {"gradient": 6.908012799568681, "_id": "nOV9lBayvp", "elevation": -4134.184, "temperature": 92.51982837639491, "vertical_depth": 4159.184}, {"gradient": 6.870152605185251, "_id": "AB0zeEvkoy", "elevation": -4143.038, "temperature": 92.58065670756122, "vertical_depth": 4168.038}, {"gradient": 4.2673598476136, "_id": "AKA2Ly7z4z", "elevation": -4151.892, "temperature": 92.61843991165199, "vertical_depth": 4176.892}, {"gradient": 6.833314820928655, "_id": "8mY2Gdr56g", "elevation": -4160.745, "temperature": 92.67893524776167, "vertical_depth": 4185.745}, {"gradient": 4.2170056408230785, "_id": "Z5y9M7n0z3", "elevation": -4169.599, "temperature": 92.71627261570552, "vertical_depth": 4194.599}, {"gradient": 4.16663372175421, "_id": "93Ex5jZlJW", "elevation": -4178.453, "temperature": 92.75316399067793, "vertical_depth": 4203.453}, {"gradient": 6.794284131101359, "_id": "RWMEme7xPK", "elevation": -4187.306, "temperature": 92.81331378809057, "vertical_depth": 4212.306}, {"gradient": 4.116108915851712, "_id": "jyM1b3OQBZ", "elevation": -4196.16, "temperature": 92.84975781643152, "vertical_depth": 4221.16}, {"gradient": 6.757158334283295, "_id": "LX35B1gGAd", "elevation": -4205.013, "temperature": 92.90957893916493, "vertical_depth": 4230.013}, {"gradient": 4.0654629423853175, "_id": "e9MEWbQ1nB", "elevation": -4213.867, "temperature": 92.94557454805681, "vertical_depth": 4238.867}, {"gradient": 6.7211592525354815, "_id": "Xq5JkXA9mR", "elevation": -4222.721, "temperature": 93.00508369207876, "vertical_depth": 4247.721}, {"gradient": 6.687562254638765, "_id": "pomBVQdqJK", "elevation": -4231.574, "temperature": 93.06428868071907, "vertical_depth": 4256.574}, {"gradient": 4.014920632966325, "_id": "ppbKREk3rm", "elevation": -4240.428, "temperature": 93.09983678800336, "vertical_depth": 4265.428}, {"gradient": 3.9639628477377653, "_id": "y48NbPjvgd", "elevation": -4249.282, "temperature": 93.13493371505723, "vertical_depth": 4274.282}, {"gradient": 6.651228695837842, "_id": "nLwWQKpZz9", "elevation": -4258.135, "temperature": 93.19381704270148, "vertical_depth": 4283.135}, {"gradient": 6.613996111752484, "_id": "x4ENVAxdnO", "elevation": -4266.989, "temperature": 93.25237736427493, "vertical_depth": 4291.989}, {"gradient": 3.9132764234435307, "_id": "WGezXojlzx", "elevation": -4275.842, "temperature": 93.28702160045168, "vertical_depth": 4300.842}, {"gradient": 6.577745358646168, "_id": "ldyVzB7P4L", "elevation": -4284.696, "temperature": 93.34526095785714, "vertical_depth": 4309.696}, {"gradient": 3.86157245413621, "_id": "DO6Nk7znNe", "elevation": -4293.55, "temperature": 93.37945132036606, "vertical_depth": 4318.55}, {"gradient": 3.81061185141324, "_id": "9ova5069Eq", "elevation": -4302.403, "temperature": 93.41318666708662, "vertical_depth": 4327.403}, {"gradient": 6.54158331241845, "_id": "ajBYG1ovY9", "elevation": -4311.257, "temperature": 93.47110584573477, "vertical_depth": 4336.257}, {"gradient": 3.758685897957326, "_id": "XPxLg3bnw8", "elevation": -4320.111, "temperature": 93.50438525067528, "vertical_depth": 4345.111}, {"gradient": 6.506853794018552, "_id": "DbOG4xzvGx", "elevation": -4328.964, "temperature": 93.56199042731373, "vertical_depth": 4353.964}, {"gradient": 6.471054471484777, "_id": "LmyEbxWMV6", "elevation": -4337.818, "temperature": 93.61928514360426, "vertical_depth": 4362.818}, {"gradient": 3.707069578627164, "_id": "qPn0Av1qZ6", "elevation": -4346.672, "temperature": 93.65210753765342, "vertical_depth": 4371.672}, {"gradient": 3.65569966571774, "_id": "aPlQ7AJW5w", "elevation": -4355.525, "temperature": 93.68447144679402, "vertical_depth": 4380.525}, {"gradient": 6.435178459221468, "_id": "vyQlv0zjdb", "elevation": -4364.379, "temperature": 93.74144851687197, "vertical_depth": 4389.379}, {"gradient": 6.398477412126824, "_id": "Mdv7np4yLR", "elevation": -4373.232, "temperature": 93.79809423740153, "vertical_depth": 4398.232}, {"gradient": 3.603410935418296, "_id": "QDxQve1GYB", "elevation": -4382.086, "temperature": 93.82999883782372, "vertical_depth": 4407.086}, {"gradient": 3.5513936314212686, "_id": "M8JEn6dmW4", "elevation": -4390.94, "temperature": 93.86144287703632, "vertical_depth": 4415.94}, {"gradient": 6.361642175860916, "_id": "7erzVwDNZG", "elevation": -4399.793, "temperature": 93.91776249521922, "vertical_depth": 4424.793}, {"gradient": 6.325511589821534, "_id": "xxnp702lWX", "elevation": -4408.647, "temperature": 93.9737685748355, "vertical_depth": 4433.647}, {"gradient": 3.499222316234247, "_id": "6WENDV4AEJ", "elevation": -4417.501, "temperature": 94.00475068922344, "vertical_depth": 4442.501}, {"gradient": 3.447314268703267, "_id": "ERp60PEdmm", "elevation": -4426.354, "temperature": 94.03526976244427, "vertical_depth": 4451.354}, {"gradient": 6.290249784136897, "_id": "MXxoNMLOxm", "elevation": -4435.208, "temperature": 94.09096363403302, "vertical_depth": 4460.208}, {"gradient": 6.256646461586165, "_id": "KKa5B6rPEw", "elevation": -4444.061, "temperature": 94.14635372515744, "vertical_depth": 4469.061}, {"gradient": 3.394532291588761, "_id": "ppyKzmA8p8", "elevation": -4452.915, "temperature": 94.17640891406717, "vertical_depth": 4477.915}, {"gradient": 3.342003420819893, "_id": "WQNRqXBMMm", "elevation": -4461.769, "temperature": 94.20599901235511, "vertical_depth": 4486.769}, {"gradient": 6.222331598760336, "_id": "mx3mQK9119", "elevation": -4470.622, "temperature": 94.26108531399893, "vertical_depth": 4495.622}, {"gradient": 3.2665181165479806, "_id": "06W7NGDE6x", "elevation": -4479.476, "temperature": 94.29000706540285, "vertical_depth": 4504.476}, {"gradient": 6.166783557202249, "_id": "5klN5jRpyJ", "elevation": -4488.33, "temperature": 94.34460776701832, "vertical_depth": 4513.33}, {"gradient": 6.053090282527876, "_id": "PPdOqapy6d", "elevation": -4497.183, "temperature": 94.39819577528954, "vertical_depth": 4522.183}, {"gradient": 3.1229671896629227, "_id": "vWnPwoQgo7", "elevation": -4506.037, "temperature": 94.42584652678681, "vertical_depth": 4531.037}, {"gradient": 3.070505819478415, "_id": "EZW4YRmjZL", "elevation": -4514.891, "temperature": 94.45303278531247, "vertical_depth": 4539.891}, {"gradient": 6.019235868891523, "_id": "GzLBGdQ8ox", "elevation": -4523.744, "temperature": 94.50632108045977, "vertical_depth": 4548.744}, {"gradient": 3.017044208098685, "_id": "vV6bN7lGYp", "elevation": -4532.598, "temperature": 94.53303398987828, "vertical_depth": 4557.598}, {"gradient": 5.984847868342449, "_id": "oX8Gj5J6g4", "elevation": -4541.451, "temperature": 94.58601784805671, "vertical_depth": 4566.451}, {"gradient": 2.9003324865426574, "_id": "21LReWJmaj", "elevation": -4550.305, "temperature": 94.61169739189256, "vertical_depth": 4575.305}, {"gradient": 5.894612337131005, "_id": "GzZ1r28G34", "elevation": -4559.159, "temperature": 94.66388828952552, "vertical_depth": 4584.159}, {"gradient": 5.8619827753254, "_id": "3zwBbWj2gX", "elevation": -4568.012, "temperature": 94.71578442303547, "vertical_depth": 4593.012}, {"gradient": 2.8475659571696017, "_id": "NLaPZvJMbl", "elevation": -4576.866, "temperature": 94.74099677202025, "vertical_depth": 4601.866}, {"gradient": 2.7947330088232203, "_id": "8J8qVBgOaD", "elevation": -4585.72, "temperature": 94.76574133808037, "vertical_depth": 4610.72}, {"gradient": 5.827722550961379, "_id": "zM7Ql320rV", "elevation": -4594.573, "temperature": 94.81733416582404, "vertical_depth": 4619.573}, {"gradient": 2.741685348650758, "_id": "XVWyMlzm9z", "elevation": -4603.427, "temperature": 94.84160904790099, "vertical_depth": 4628.427}, {"gradient": 5.797201630522558, "_id": "KmK8xZLwXe", "elevation": -4612.28, "temperature": 94.892931673936, "vertical_depth": 4637.28}, {"gradient": 5.760068909319583, "_id": "KNQDjmVqoV", "elevation": -4621.134, "temperature": 94.94393132405912, "vertical_depth": 4646.134}, {"gradient": 2.688842275325308, "_id": "JAEk3LVj24", "elevation": -4629.988, "temperature": 94.96773833356485, "vertical_depth": 4654.988}, {"gradient": 2.635993358681498, "_id": "mLrMyq67J7", "elevation": -4638.841, "temperature": 94.99107478276926, "vertical_depth": 4663.841}, {"gradient": 5.7274199038905875, "_id": "7P6rDwQeq5", "elevation": -4647.695, "temperature": 95.0417853585983, "vertical_depth": 4672.695}, {"gradient": 5.695834850701335, "_id": "VxG6ogN89R", "elevation": -4656.549, "temperature": 95.09221628036642, "vertical_depth": 4681.549}, {"gradient": 2.5825979533025865, "_id": "0Rbkd6o5g3", "elevation": -4665.402, "temperature": 95.115080020047, "vertical_depth": 4690.402}, {"gradient": 2.528790498591123, "_id": "vXGVLpq0O9", "elevation": -4674.256, "temperature": 95.13746993112153, "vertical_depth": 4699.256}, {"gradient": 5.66508711564024, "_id": "zNBxGgWy5P", "elevation": -4683.11, "temperature": 95.1876286124434, "vertical_depth": 4708.11}, {"gradient": 2.475508934983581, "_id": "DYpPy5lk3Q", "elevation": -4691.963, "temperature": 95.20954429304481, "vertical_depth": 4716.963}, {"gradient": 5.636699734729303, "_id": "p5JObE4B7q", "elevation": -4700.817, "temperature": 95.25945163249611, "vertical_depth": 4725.817}, {"gradient": 5.607773660432905, "_id": "qm0OKxpkbm", "elevation": -4709.67, "temperature": 95.30909725271192, "vertical_depth": 4734.67}, {"gradient": 2.4214940379122405, "_id": "wJpmDyewoz", "elevation": -4718.524, "temperature": 95.3305371609236, "vertical_depth": 4743.524}, {"gradient": 2.3676335630104304, "_id": "dMnLGgVKxx", "elevation": -4727.378, "temperature": 95.35150018849049, "vertical_depth": 4752.378}, {"gradient": 5.578268030520283, "_id": "gKDl5XLA2J", "elevation": -4736.231, "temperature": 95.40088459536469, "vertical_depth": 4761.231}, {"gradient": 5.548640035142943, "_id": "m7o1O2D9qk", "elevation": -4745.085, "temperature": 95.45001225423584, "vertical_depth": 4770.085}, {"gradient": 2.3136638604485134, "_id": "8kOv04awVl", "elevation": -4753.939, "temperature": 95.47049743405626, "vertical_depth": 4778.939}, {"gradient": 7748.314265294069, "_id": "P67Ye3Ogba", "elevation": -4754.027, "temperature": 96.1523490894001, "vertical_depth": 4779.027}, {"gradient": 1149.9541391513264, "_id": "knJ4Ve2XyL", "elevation": -4754.116, "temperature": 96.2546950077845, "vertical_depth": 4779.116}, {"gradient": 0.9151423731542393, "_id": "neAz3wp8yM", "elevation": -4762.678, "temperature": 96.26253045678345, "vertical_depth": 4787.678}, {"gradient": 2.7865549775838243, "_id": "93bLOg7mdE", "elevation": -4771.24, "temperature": 96.28638894050152, "vertical_depth": 4796.24}, {"gradient": 2.7755512877052224, "_id": "qvl07rNq1J", "elevation": -4779.801, "temperature": 96.31015043507557, "vertical_depth": 4804.801}, {"gradient": 0.890155078261227, "_id": "zAozMJRXkE", "elevation": -4788.363, "temperature": 96.31777194285564, "vertical_depth": 4813.363}, {"gradient": 2.764088409829682, "_id": "EL43xjDrbG", "elevation": -4796.925, "temperature": 96.3414380678206, "vertical_depth": 4821.925}, {"gradient": 0.8652314084214627, "_id": "Kb7OEoxa0K", "elevation": -4805.486, "temperature": 96.3488453139081, "vertical_depth": 4830.486}, {"gradient": 2.754457220415103, "_id": "MBwoY0xKZM", "elevation": -4814.048, "temperature": 96.3724289766293, "vertical_depth": 4839.048}, {"gradient": 0.8400531570924626, "_id": "pw9QYlOJMk", "elevation": -4822.61, "temperature": 96.37962151176032, "vertical_depth": 4847.61}, {"gradient": 0.8150325739289648, "_id": "75R7jzDkx9", "elevation": -4831.171, "temperature": 96.38659900562573, "vertical_depth": 4856.171}, {"gradient": 2.7453068628416326, "_id": "gnZAxjDOMV", "elevation": -4839.733, "temperature": 96.41010432298538, "vertical_depth": 4864.733}, {"gradient": 2.73667265471811, "_id": "E13JaxyN0y", "elevation": -4848.295, "temperature": 96.43353571425507, "vertical_depth": 4873.295}, {"gradient": 0.789875377329557, "_id": "L3v09zmkwL", "elevation": -4856.856, "temperature": 96.44029783736039, "vertical_depth": 4881.856}, {"gradient": 0.8445356860923701, "_id": "B9rW2PkxDX", "elevation": -4865.418, "temperature": 96.44752875190471, "vertical_depth": 4890.418}, {"gradient": -4.024284580249091, "_id": "xloPMX3nbR", "elevation": -4873.979, "temperature": 96.4130768516132, "vertical_depth": 4898.979}, {"gradient": 2.9649075699988696, "_id": "kk7jrypMbd", "elevation": -4882.541, "temperature": 96.43846239022753, "vertical_depth": 4907.541}, {"gradient": 0.7289233930163029, "_id": "E7R0zEqJnz", "elevation": -4891.103, "temperature": 96.44470343231853, "vertical_depth": 4916.103}, {"gradient": 0.7040001623017188, "_id": "ZVQdKqxWxL", "elevation": -4899.664, "temperature": 96.450730377708, "vertical_depth": 4924.664}, {"gradient": 2.9580801772934358, "_id": "yaRzPpYNYy", "elevation": -4908.226, "temperature": 96.47605746018598, "vertical_depth": 4933.226}, {"gradient": 0.6788749865072929, "_id": "9ApZmeoKdj", "elevation": -4916.788, "temperature": 96.48186998782046, "vertical_depth": 4941.788}, {"gradient": 2.9522585062608138, "_id": "5pkgW5E7ak", "elevation": -4925.349, "temperature": 96.50714427289256, "vertical_depth": 4950.349}, {"gradient": 2.9464633214151377, "_id": "EbEmvkNP4l", "elevation": -4933.911, "temperature": 96.53237189185052, "vertical_depth": 4958.911}, {"gradient": 0.6537945870668238, "_id": "216OpqWBp2", "elevation": -4942.473, "temperature": 96.53796968110498, "vertical_depth": 4967.473}, {"gradient": 2.9421340967750313, "_id": "495RpLNPp2", "elevation": -4951.034, "temperature": 96.56315729110747, "vertical_depth": 4976.034}, {"gradient": 0.628676771743821, "_id": "mPXeLB5KgW", "elevation": -4959.596, "temperature": 96.56854002162714, "vertical_depth": 4984.596}, {"gradient": 0.6035215433199759, "_id": "m15dLVx3b0", "elevation": -4968.158, "temperature": 96.57370737308105, "vertical_depth": 4993.158}, {"gradient": 2.9383076789004257, "_id": "Lj2P06Bw0G", "elevation": -4976.719, "temperature": 96.59886222512011, "vertical_depth": 5001.719}, {"gradient": 2.931229131573002, "_id": "p0n1VpZ3xv", "elevation": -4985.281, "temperature": 96.62395940894464, "vertical_depth": 5010.281}, {"gradient": 0.5741203530819284, "_id": "9onPw6gym8", "elevation": -4993.843, "temperature": 96.62887502740773, "vertical_depth": 5018.843}, {"gradient": 2.8806898054145167, "_id": "3J91peEx48", "elevation": -5002.404, "temperature": 96.65353661283189, "vertical_depth": 5027.404}, {"gradient": 0.4921432459410374, "_id": "d04blMen3L", "elevation": -5010.966, "temperature": 96.65775034330363, "vertical_depth": 5035.966}, {"gradient": 0.46693398594222624, "_id": "rzXr7wvnev", "elevation": -5019.528, "temperature": 96.66174823209127, "vertical_depth": 5044.528}, {"gradient": 2.8809044820592575, "_id": "jvkjDE4grW", "elevation": -5028.089, "temperature": 96.68641165536218, "vertical_depth": 5053.089}, {"gradient": 0.4417005947569166, "_id": "jeonR21PvD", "elevation": -5036.651, "temperature": 96.69019349585449, "vertical_depth": 5061.651}, {"gradient": 2.880903786543082, "_id": "Gz9ny8Q7LL", "elevation": -5045.213, "temperature": 96.71485979407487, "vertical_depth": 5070.213}, {"gradient": 2.8828614815068563, "_id": "5NJevqmxbR", "elevation": -5053.774, "temperature": 96.73953997121805, "vertical_depth": 5078.774}, {"gradient": 0.4164293075075786, "_id": "lV4PRWkOMR", "elevation": -5062.336, "temperature": 96.74310543894893, "vertical_depth": 5087.336}, {"gradient": 0.39111720535569156, "_id": "a7Mkd3z16P", "elevation": -5070.898, "temperature": 96.74645418446119, "vertical_depth": 5095.898}, {"gradient": 2.8861213715159932, "_id": "mOzWMJKYZG", "elevation": -5079.459, "temperature": 96.77116226952273, "vertical_depth": 5104.459}, {"gradient": 2.890761168130494, "_id": "yjolD9Aj8e", "elevation": -5088.021, "temperature": 96.79591296664427, "vertical_depth": 5113.021}, {"gradient": 0.3657651119266767, "_id": "0zQReoq6rB", "elevation": -5096.583, "temperature": 96.79904464753258, "vertical_depth": 5121.583}, {"gradient": 0.34041197001943396, "_id": "JOVk4PZ917", "elevation": -5105.144, "temperature": 96.80195891440792, "vertical_depth": 5130.144}, {"gradient": 2.8976748002625423, "_id": "9j0y6e2GLn", "elevation": -5113.706, "temperature": 96.82676880604777, "vertical_depth": 5138.706}, {"gradient": 2.90678711503603, "_id": "eM1JGRbMwM", "elevation": -5122.268, "temperature": 96.8516567173267, "vertical_depth": 5147.268}, {"gradient": 0.3149741918543888, "_id": "r9Z5nEx9Pb", "elevation": -5130.829, "temperature": 96.85435321138317, "vertical_depth": 5155.829}, {"gradient": 2.9184141836889697, "_id": "qjXEAPnjxM", "elevation": -5139.391, "temperature": 96.87934067362391, "vertical_depth": 5164.391}, {"gradient": 0.2894930197114861, "_id": "nOAEBexOdv", "elevation": -5147.952, "temperature": 96.88181902336567, "vertical_depth": 5172.952}, {"gradient": -0.2549976444130149, "_id": "b5n1rVM5op", "elevation": -5156.514, "temperature": 96.8796357335342, "vertical_depth": 5181.514}, {"gradient": -0.2549976444130149, "_id": "1e2dN61e02", "elevation": -5165.076, "temperature": 96.87745244370274, "vertical_depth": 5190.076}, {"gradient": -0.25502743037779296, "_id": "VdvEY4pd0G", "elevation": -5173.637, "temperature": 96.87526915387127, "vertical_depth": 5198.637}, {"gradient": -0.2549976444130149, "_id": "vxEMqd7xeN", "elevation": -5182.199, "temperature": 96.87308586403981, "vertical_depth": 5207.199}, {"gradient": -0.25499764441298783, "_id": "nMEjK9dNBg", "elevation": -5190.761, "temperature": 96.87090257420834, "vertical_depth": 5215.761}, {"gradient": -0.21339205301927433, "_id": "ddyMo9PdRy", "elevation": -5199.322, "temperature": 96.86907572484245, "vertical_depth": 5224.322}, {"gradient": 2189.604082273548, "_id": "Bp6RMolpwq", "elevation": -5199.411, "temperature": 97.06395048816466, "vertical_depth": 5224.411}, {"gradient": 0.2124184344427233, "_id": "Nld34xNlQQ", "elevation": -5199.5, "temperature": 97.06396939340533, "vertical_depth": 5224.5}, {"gradient": 0.21275776801850674, "_id": "VXNk0Ao1JG", "elevation": -5207.184, "temperature": 97.06560422409478, "vertical_depth": 5232.184}, {"gradient": 0.7728098919766175, "_id": "lLZjm8boww", "elevation": -5214.869, "temperature": 97.07154326811462, "vertical_depth": 5239.869}, {"gradient": 1.161614428878907, "_id": "9JEjnzdJ1A", "elevation": -5222.553, "temperature": 97.08046911338613, "vertical_depth": 5247.553}, {"gradient": 1.2722376204410382, "_id": "kV03LenVbK", "elevation": -5230.237, "temperature": 97.0902449872616, "vertical_depth": 5255.237}, {"gradient": 859.4882920691193, "_id": "W85Qv1m8YR", "elevation": -5230.326, "temperature": 97.1667394452557, "vertical_depth": 5255.326}, {"gradient": -3.1778271492727783, "_id": "AZVwkalZqx", "elevation": -5230.415, "temperature": 97.16645661863942, "vertical_depth": 5255.415}, {"gradient": -3.1829097801215456, "_id": "Kq8RBabqoG", "elevation": -5238.284, "temperature": 97.14141030157964, "vertical_depth": 5263.284}, {"gradient": -3.182505344309537, "_id": "1PbL93ePQo", "elevation": -5246.154, "temperature": 97.11636398451992, "vertical_depth": 5271.154}, {"gradient": -3.1829097801215456, "_id": "8K167mGKJR", "elevation": -5254.023, "temperature": 97.09131766746015, "vertical_depth": 5279.023}, {"gradient": -3.1829097801287696, "_id": "LWX2jKvWpj", "elevation": -5261.892, "temperature": 97.06627135040031, "vertical_depth": 5286.892}, {"gradient": -3.182505344309905, "_id": "KDYnk7ODWK", "elevation": -5269.762, "temperature": 97.0412250333406, "vertical_depth": 5294.762}, {"gradient": -3.182909780121178, "_id": "8qo4BNEq8W", "elevation": -5277.631, "temperature": 97.01617871628082, "vertical_depth": 5302.631}, {"gradient": -3.1825053443171276, "_id": "nDKmv48DKL", "elevation": -5285.501, "temperature": 96.99113239922104, "vertical_depth": 5310.501}, {"gradient": -3.182909780114322, "_id": "rwLNK6xwZq", "elevation": -5293.37, "temperature": 96.96608608216133, "vertical_depth": 5318.37}, {"gradient": -3.1829097801215456, "_id": "xem5a0Ve7e", "elevation": -5301.239, "temperature": 96.94103976510155, "vertical_depth": 5326.239}, {"gradient": -3.1825053443239826, "_id": "E5LOjd95nK", "elevation": -5309.109, "temperature": 96.91599344804172, "vertical_depth": 5334.109}, {"gradient": -3.182909780114322, "_id": "YK2xoq6KKg", "elevation": -5316.978, "temperature": 96.890947130982, "vertical_depth": 5341.978}, {"gradient": -3.182909780114322, "_id": "G6Qdo9q6Ww", "elevation": -5324.847, "temperature": 96.86590081392228, "vertical_depth": 5349.847}, {"gradient": 1.8119800854663206, "_id": "DDg8VZnDOj", "elevation": -5332.717, "temperature": 96.8801610971949, "vertical_depth": 5357.717}, {"gradient": -2.5070299713576483, "_id": "ndQpkX8ddz", "elevation": -5340.586, "temperature": 96.86043327835029, "vertical_depth": 5365.586}]}, {"is_default": false, "name": "Fluido (Prod GL PO)", "calculated_from": "mGNrD2K2bD-5-f", "source": "GRADIENT", "_id": "5WBlN42zGp", "data": [{"gradient": 0, "_id": "YANk2BbWWj", "elevation": -2047.0, "temperature": 87.3023401614671, "vertical_depth": 2072.0}, {"gradient": 15.65661551415685, "_id": "5NXdrb3Jjm", "elevation": -2053.685, "temperature": 87.40700463617924, "vertical_depth": 2078.685}, {"gradient": 15.658957916237972, "_id": "l2yDOa14be", "elevation": -2060.369, "temperature": 87.51166911089138, "vertical_depth": 2085.369}, {"gradient": 12.298818662850714, "_id": "P7vdw5WznL", "elevation": -2067.05, "temperature": 87.59383751837788, "vertical_depth": 2092.05}, {"gradient": 12.302501495193434, "_id": "9aOPb5rG71", "elevation": -2073.729, "temperature": 87.67600592586427, "vertical_depth": 2098.729}, {"gradient": 9.668487025519472, "_id": "nNzrg15m4O", "elevation": -2080.405, "temperature": 87.74055274524665, "vertical_depth": 2105.405}, {"gradient": 9.669935487996158, "_id": "m1brZ2RMMA", "elevation": -2087.08, "temperature": 87.80509956462902, "vertical_depth": 2112.08}, {"gradient": 13.438844795258264, "_id": "eW0l9Y5r0g", "elevation": -2087.18, "temperature": 87.80644344910854, "vertical_depth": 2112.18}, {"gradient": 13.438844795197152, "_id": "zD02BxQ40X", "elevation": -2087.28, "temperature": 87.80778733358807, "vertical_depth": 2112.28}, {"gradient": 12.054806540662698, "_id": "9do3DP6qb6", "elevation": -2096.532, "temperature": 87.91931840370228, "vertical_depth": 2121.532}, {"gradient": 12.053503740870111, "_id": "MlxpRnX3Lw", "elevation": -2105.785, "temperature": 88.03084947381655, "vertical_depth": 2130.785}, {"gradient": 8.473465999341505, "_id": "bEaMN45z8b", "elevation": -2115.037, "temperature": 88.10924598124245, "vertical_depth": 2140.037}, {"gradient": 8.473465999353376, "_id": "e6wpa7beWr", "elevation": -2124.289, "temperature": 88.18764248866847, "vertical_depth": 2149.289}, {"gradient": 6.2002915269893295, "_id": "pZe0LXpzVa", "elevation": -2133.542, "temperature": 88.2450137861677, "vertical_depth": 2158.542}, {"gradient": 6.200961683877077, "_id": "WWl1pY5z8L", "elevation": -2142.794, "temperature": 88.30238508366693, "vertical_depth": 2167.794}, {"gradient": 5.411023167317045, "_id": "Ja8D2ZB0N3", "elevation": -2142.894, "temperature": 88.30292618598367, "vertical_depth": 2167.894}, {"gradient": 5.4110231667240045, "_id": "aVO7bvzlvL", "elevation": -2142.994, "temperature": 88.30346728830034, "vertical_depth": 2167.994}, {"gradient": 5.505761078297521, "_id": "k3NWGd1gdD", "elevation": -2152.935, "temperature": 88.3582000591797, "vertical_depth": 2177.935}, {"gradient": 5.505761078291551, "_id": "MPLr6BdYZ6", "elevation": -2162.876, "temperature": 88.41293283005899, "vertical_depth": 2187.876}, {"gradient": 5.616669474041369, "_id": "0oj1ROXpaY", "elevation": -2172.816, "temperature": 88.46876252463096, "vertical_depth": 2197.816}, {"gradient": 5.616104473596655, "_id": "rZAeJbKoy7", "elevation": -2182.757, "temperature": 88.52459221920299, "vertical_depth": 2207.757}, {"gradient": 5.666454028199246, "_id": "y2mZJ80woN", "elevation": -2192.698, "temperature": 88.58092243869731, "vertical_depth": 2217.698}, {"gradient": 5.666454028198987, "_id": "69EkKLxz0x", "elevation": -2202.639, "temperature": 88.63725265819164, "vertical_depth": 2227.639}, {"gradient": 5.683451338827095, "_id": "rZK1LGRozR", "elevation": -2212.58, "temperature": 88.69375184795092, "vertical_depth": 2237.58}, {"gradient": 5.683451338821117, "_id": "8jawbJ7BdY", "elevation": -2222.521, "temperature": 88.75025103771014, "vertical_depth": 2247.521}, {"gradient": 5.681889381182803, "_id": "O3aVqjvkR3", "elevation": -2232.462, "temperature": 88.80673470004848, "vertical_depth": 2257.462}, {"gradient": 5.681889381182803, "_id": "zN4WlORMJL", "elevation": -2242.403, "temperature": 88.86321836238682, "vertical_depth": 2267.403}, {"gradient": 5.6699864457867, "_id": "d6RlQprVOl", "elevation": -2252.344, "temperature": 88.91958369764438, "vertical_depth": 2277.344}, {"gradient": 5.669986445798395, "_id": "D3o91PGqbE", "elevation": -2262.285, "temperature": 88.97594903290207, "vertical_depth": 2287.285}, {"gradient": 5.652322221905641, "_id": "EgXeonlDzv", "elevation": -2272.226, "temperature": 89.03213876811003, "vertical_depth": 2297.226}, {"gradient": 5.652322221911618, "_id": "AndKPY8o9E", "elevation": -2282.167, "temperature": 89.08832850331805, "vertical_depth": 2307.167}, {"gradient": 5.632000261065779, "_id": "z9MK5ZeNlw", "elevation": -2292.107, "temperature": 89.14431058591305, "vertical_depth": 2317.107}, {"gradient": 5.631433718438312, "_id": "XPpWLa3Ogn", "elevation": -2302.048, "temperature": 89.20029266850804, "vertical_depth": 2327.048}, {"gradient": 5.608730202038825, "_id": "P47mAE0xYL", "elevation": -2311.989, "temperature": 89.25604905544651, "vertical_depth": 2336.989}, {"gradient": 5.608730202033363, "_id": "2z24owyK6w", "elevation": -2321.93, "temperature": 89.31180544238492, "vertical_depth": 2346.93}, {"gradient": 5.584994473184126, "_id": "N3dR1E4V82", "elevation": -2331.871, "temperature": 89.36732587244285, "vertical_depth": 2356.871}, {"gradient": 5.5849944731843815, "_id": "JnmjqZQGg5", "elevation": -2341.812, "temperature": 89.42284630250077, "vertical_depth": 2366.812}, {"gradient": 5.560660578711215, "_id": "JDjnQdKE9p", "elevation": -2351.753, "temperature": 89.47812482931374, "vertical_depth": 2376.753}, {"gradient": 5.560660578717188, "_id": "8AXoG67n88", "elevation": -2361.694, "temperature": 89.53340335612677, "vertical_depth": 2386.694}, {"gradient": 5.535970284562011, "_id": "Y2PLYDwB51", "elevation": -2371.635, "temperature": 89.5884364367256, "vertical_depth": 2396.635}, {"gradient": 5.535970284562264, "_id": "dxbMPW45eB", "elevation": -2381.576, "temperature": 89.64346951732443, "vertical_depth": 2406.576}, {"gradient": 5.511050342400463, "_id": "Vgl1LqMxNn", "elevation": -2391.517, "temperature": 89.69825486877824, "vertical_depth": 2416.517}, {"gradient": 5.511604774024308, "_id": "yRwkqg7a5X", "elevation": -2401.457, "temperature": 89.75304022023204, "vertical_depth": 2426.457}, {"gradient": 5.485971269937773, "_id": "52emJyj3E0", "elevation": -2411.398, "temperature": 89.80757626062649, "vertical_depth": 2436.398}, {"gradient": 5.485971269938023, "_id": "ymgM4k7X92", "elevation": -2421.339, "temperature": 89.86211230102094, "vertical_depth": 2446.339}, {"gradient": 5.46078328008693, "_id": "NDmxMNG1RK", "elevation": -2431.28, "temperature": 89.91639794760829, "vertical_depth": 2456.28}, {"gradient": 5.460783280075743, "_id": "EYpyLzQoB2", "elevation": -2441.221, "temperature": 89.97068359419552, "vertical_depth": 2466.221}, {"gradient": 5.435511845155293, "_id": "9qGDx41XkW", "elevation": -2451.162, "temperature": 90.02471801744821, "vertical_depth": 2476.162}, {"gradient": 5.4355118451493265, "_id": "3r9B3zXKmg", "elevation": -2461.103, "temperature": 90.07875244070084, "vertical_depth": 2486.103}, {"gradient": 5.410170390693325, "_id": "MLORNewqaD", "elevation": -2471.044, "temperature": 90.13253494455472, "vertical_depth": 2496.044}, {"gradient": 5.410170390693078, "_id": "Qjd4rPy8xL", "elevation": -2480.985, "temperature": 90.1863174484086, "vertical_depth": 2505.985}, {"gradient": 5.337918197038429, "_id": "2YpAndkRlJ", "elevation": -2490.926, "temperature": 90.23938169320536, "vertical_depth": 2515.926}, {"gradient": 5.337918197038185, "_id": "0Jae0rk4M5", "elevation": -2500.867, "temperature": 90.29244593800212, "vertical_depth": 2525.867}, {"gradient": 5.218036514994309, "_id": "5plgPGy3By", "elevation": -2510.808, "temperature": 90.34431843899768, "vertical_depth": 2535.808}, {"gradient": 5.218561468360188, "_id": "1Ov9lYa3aV", "elevation": -2520.748, "temperature": 90.39619093999318, "vertical_depth": 2545.748}, {"gradient": 5.191488728164964, "_id": "mGXB8MylZy", "elevation": -2530.689, "temperature": 90.44779952943986, "vertical_depth": 2555.689}, {"gradient": 5.19148872815329, "_id": "LqRBmKJy7Z", "elevation": -2540.63, "temperature": 90.49940811888644, "vertical_depth": 2565.63}, {"gradient": 5.165409197195351, "_id": "OVJg37MDbL", "elevation": -2550.571, "temperature": 90.55075745171575, "vertical_depth": 2575.571}, {"gradient": 5.165409197189397, "_id": "5p7Xebn1aN", "elevation": -2560.512, "temperature": 90.60210678454501, "vertical_depth": 2585.512}, {"gradient": 5.139565857058225, "_id": "k1BeL3VmMj", "elevation": -2570.453, "temperature": 90.65319920873003, "vertical_depth": 2595.453}, {"gradient": 5.139565857069662, "_id": "zxV7A2kZyr", "elevation": -2580.394, "temperature": 90.70429163291516, "vertical_depth": 2605.394}, {"gradient": 5.113829627790994, "_id": "9eqj5zRgmX", "elevation": -2590.335, "temperature": 90.75512821324503, "vertical_depth": 2615.335}, {"gradient": 5.113829627791228, "_id": "lqL7BvJjzz", "elevation": -2600.276, "temperature": 90.8059647935749, "vertical_depth": 2625.276}, {"gradient": 5.088128551464008, "_id": "EEROAKja6G", "elevation": -2610.217, "temperature": 90.856545879505, "vertical_depth": 2635.217}, {"gradient": 5.088128551458523, "_id": "PokVGa7pNz", "elevation": -2620.158, "temperature": 90.90712696543505, "vertical_depth": 2645.158}, {"gradient": 5.0624225905885005, "_id": "jPyoa2QrXM", "elevation": -2630.099, "temperature": 90.9574525084081, "vertical_depth": 2655.099}, {"gradient": 5.062931888635948, "_id": "4E32ZmPB8D", "elevation": -2640.039, "temperature": 91.00777805138114, "vertical_depth": 2665.039}, {"gradient": 5.0226733097305125, "_id": "lMDJpY3lm7", "elevation": -2649.98, "temperature": 91.05770844675317, "vertical_depth": 2674.98}, {"gradient": 5.02267330973623, "_id": "dJL6AnxReO", "elevation": -2659.921, "temperature": 91.10763884212525, "vertical_depth": 2684.921}, {"gradient": 4.868437988966356, "_id": "pNxmDnXEWx", "elevation": -2669.862, "temperature": 91.15603598417357, "vertical_depth": 2694.862}, {"gradient": 4.868437988966578, "_id": "anomY5aryR", "elevation": -2679.803, "temperature": 91.20443312622189, "vertical_depth": 2704.803}, {"gradient": 4.841328531234532, "_id": "OlWpoaLKMZ", "elevation": -2689.744, "temperature": 91.25256077315089, "vertical_depth": 2714.744}, {"gradient": 4.841328531234753, "_id": "kPQWVw4dvN", "elevation": -2699.685, "temperature": 91.3006884200799, "vertical_depth": 2724.685}, {"gradient": 4.814763410942086, "_id": "0W3w0pebN1", "elevation": -2709.626, "temperature": 91.34855198314807, "vertical_depth": 2734.626}, {"gradient": 4.814763410942306, "_id": "vrMOnvQ96E", "elevation": -2719.567, "temperature": 91.39641554621625, "vertical_depth": 2744.567}, {"gradient": 4.788476119849892, "_id": "wRkOzLYr1o", "elevation": -2729.508, "temperature": 91.44401778732367, "vertical_depth": 2754.508}, {"gradient": 4.788476119849673, "_id": "g7X4Nb6GBw", "elevation": -2739.449, "temperature": 91.4916200284311, "vertical_depth": 2764.449}, {"gradient": 4.762319017906995, "_id": "Dn8A1NqEo6", "elevation": -2749.39, "temperature": 91.53896224178811, "vertical_depth": 2774.39}, {"gradient": 4.762798124447912, "_id": "N7ar3M6Ew9", "elevation": -2759.33, "temperature": 91.58630445514513, "vertical_depth": 2784.33}, {"gradient": 4.736206953025801, "_id": "3QeVDWgopa", "elevation": -2769.271, "temperature": 91.63338708846516, "vertical_depth": 2794.271}, {"gradient": 4.736206953020299, "_id": "1jYrxkJ4ra", "elevation": -2779.212, "temperature": 91.68046972178513, "vertical_depth": 2804.212}, {"gradient": 4.710091350707208, "_id": "7W3B4GprBk", "elevation": -2789.153, "temperature": 91.72729273990251, "vertical_depth": 2814.153}, {"gradient": 4.710091350706993, "_id": "BPQyWXe22e", "elevation": -2799.094, "temperature": 91.77411575801989, "vertical_depth": 2824.094}, {"gradient": 4.683950109244661, "_id": "YGkpOE9V75", "elevation": -2809.035, "temperature": 91.82067890605589, "vertical_depth": 2834.035}, {"gradient": 4.683950109244447, "_id": "n79rOxodd3", "elevation": -2818.976, "temperature": 91.86724205409189, "vertical_depth": 2843.976}, {"gradient": 1.871589969370572, "_id": "P4L3V16vvw", "elevation": -2819.076, "temperature": 91.86742921308883, "vertical_depth": 2844.076}, {"gradient": 1.871589969370572, "_id": "DkOaQ8yL4x", "elevation": -2819.176, "temperature": 91.86761637208576, "vertical_depth": 2844.176}, {"gradient": 1.4551077879837477, "_id": "ZeV3daN7Zn", "elevation": -2828.53, "temperature": 91.88122745033456, "vertical_depth": 2853.53}, {"gradient": 1.4552633645736959, "_id": "mmJ3ZNQwJv", "elevation": -2837.883, "temperature": 91.89483852858342, "vertical_depth": 2862.883}, {"gradient": 1.659819465114994, "_id": "jOZVnpvzZ1", "elevation": -2847.237, "temperature": 91.9103644798601, "vertical_depth": 2872.237}, {"gradient": 1.6598194651211515, "_id": "vdvDERwYvo", "elevation": -2856.591, "temperature": 91.92589043113685, "vertical_depth": 2881.591}, {"gradient": 1.7851147856697602, "_id": "MYQB48vXKp", "elevation": -2865.945, "temperature": 91.942588394842, "vertical_depth": 2890.945}, {"gradient": 1.78511478566377, "_id": "PEyOrq9oe2", "elevation": -2875.299, "temperature": 91.9592863585471, "vertical_depth": 2900.299}, {"gradient": 4.7613190719219, "_id": "nPpVaNEkDo", "elevation": -2875.399, "temperature": 91.9597624904543, "vertical_depth": 2900.399}, {"gradient": 4.809413203375189, "_id": "wBoRlvm0BM", "elevation": -2875.498, "temperature": 91.96023862236143, "vertical_depth": 2900.498}, {"gradient": 5.184737027469228, "_id": "zdgVKvY9kE", "elevation": -2883.604, "temperature": 92.0022661007061, "vertical_depth": 2908.604}, {"gradient": 5.1847370274759506, "_id": "XDe6KpGBqo", "elevation": -2891.71, "temperature": 92.04429357905082, "vertical_depth": 2916.71}, {"gradient": 4.93229545289955, "_id": "JY7OwkyoY9", "elevation": -2899.815, "temperature": 92.08426983369657, "vertical_depth": 2924.815}, {"gradient": 4.9316869782500925, "_id": "769l4e3d67", "elevation": -2907.921, "temperature": 92.12424608834226, "vertical_depth": 2932.921}, {"gradient": 4.767318079735214, "_id": "vVvLnpaD7q", "elevation": -2916.026, "temperature": 92.16288520137851, "vertical_depth": 2941.026}, {"gradient": 4.766729957586492, "_id": "1AxkzWQ2m3", "elevation": -2924.132, "temperature": 92.20152431441471, "vertical_depth": 2949.132}, {"gradient": 1.9125226566547213, "_id": "dawNMpAZLZ", "elevation": -2924.232, "temperature": 92.20171556668038, "vertical_depth": 2949.232}, {"gradient": 1.9318410678972966, "_id": "2wAPB895Je", "elevation": -2924.331, "temperature": 92.2019068189461, "vertical_depth": 2949.331}, {"gradient": 1.4548492190695341, "_id": "MDMakPz8PX", "elevation": -2932.568, "temperature": 92.21389041196358, "vertical_depth": 2957.568}, {"gradient": 1.4548492190765154, "_id": "KgYVyml7Bv", "elevation": -2940.805, "temperature": 92.22587400498111, "vertical_depth": 2965.805}, {"gradient": 1.5371199430549405, "_id": "QV4g5dxq1g", "elevation": -2949.042, "temperature": 92.23853526195205, "vertical_depth": 2974.042}, {"gradient": 1.536933354090808, "_id": "1kbo7qY9Dj", "elevation": -2957.28, "temperature": 92.25119651892305, "vertical_depth": 2982.28}, {"gradient": 1.5092505431150616, "_id": "jeg8pAbW0o", "elevation": -2965.517, "temperature": 92.26362821564669, "vertical_depth": 2990.517}, {"gradient": 1.5092505431287802, "_id": "6OBK6D8EZJ", "elevation": -2973.754, "temperature": 92.27605991237044, "vertical_depth": 2998.754}, {"gradient": 25.869024159269763, "_id": "D0wKbEaJz2", "elevation": -2976.355, "temperature": 92.3433452442087, "vertical_depth": 3001.355}, {"gradient": 25.869024159269763, "_id": "dB1KVQ2Rb7", "elevation": -2978.956, "temperature": 92.41063057604697, "vertical_depth": 3003.956}, {"gradient": 3.436250376583699, "_id": "Jlx2rn53G3", "elevation": -2979.056, "temperature": 92.41097420108463, "vertical_depth": 3004.056}, {"gradient": 3.436250376015265, "_id": "ae678Eywly", "elevation": -2979.156, "temperature": 92.41131782612223, "vertical_depth": 3004.156}, {"gradient": 3.94071386035393, "_id": "gWn9E4vX26", "elevation": -2987.456, "temperature": 92.44402575116317, "vertical_depth": 3012.456}, {"gradient": 3.9407138603678433, "_id": "ayz8amoNea", "elevation": -2995.756, "temperature": 92.47673367620422, "vertical_depth": 3020.756}, {"gradient": 3.915492061560606, "_id": "4NWoO16wJy", "elevation": -3004.056, "temperature": 92.50923226031517, "vertical_depth": 3029.056}, {"gradient": 3.9154920615674547, "_id": "16dAj0q8al", "elevation": -3012.356, "temperature": 92.54173084442618, "vertical_depth": 3037.356}, {"gradient": 3.8906717997961127, "_id": "bDodwZngj8", "elevation": -3020.655, "temperature": 92.57401952969269, "vertical_depth": 3045.655}, {"gradient": 3.8902030441577007, "_id": "axG15amWk8", "elevation": -3028.955, "temperature": 92.6063082149592, "vertical_depth": 3053.955}, {"gradient": 3.8648711063776116, "_id": "RDQYol6q3P", "elevation": -3037.255, "temperature": 92.63838664514213, "vertical_depth": 3062.255}, {"gradient": 3.8648711063709746, "_id": "w7E54WemKe", "elevation": -3045.555, "temperature": 92.67046507532501, "vertical_depth": 3070.555}, {"gradient": 3.8112289104080945, "_id": "ZOaKBknrjg", "elevation": -3045.655, "temperature": 92.67084619821605, "vertical_depth": 3070.655}, {"gradient": 3.8112289104254264, "_id": "nwxEeZpAYN", "elevation": -3045.755, "temperature": 92.6712273211071, "vertical_depth": 3070.755}, {"gradient": 3.794102664880151, "_id": "MDg0b6zq1O", "elevation": -3055.689, "temperature": 92.70891793698001, "vertical_depth": 3080.689}, {"gradient": 3.7941026648742557, "_id": "2OYG1QqBnM", "elevation": -3065.623, "temperature": 92.74660855285288, "vertical_depth": 3090.623}, {"gradient": 3.763916231638332, "_id": "MQALXPK0VK", "elevation": -3075.557, "temperature": 92.78399929669797, "vertical_depth": 3100.557}, {"gradient": 3.76391623163816, "_id": "83npMD6NZY", "elevation": -3085.491, "temperature": 92.82139004054306, "vertical_depth": 3110.491}, {"gradient": 3.733663214296321, "_id": "NaQV4X35yY", "elevation": -3095.425, "temperature": 92.85848025091389, "vertical_depth": 3120.425}, {"gradient": 3.7336632143022137, "_id": "J0REzr4jOD", "elevation": -3105.359, "temperature": 92.89557046128476, "vertical_depth": 3130.359}, {"gradient": 3.7033432715307306, "_id": "Z7lvZMBmw1", "elevation": -3115.293, "temperature": 92.93235947334415, "vertical_depth": 3140.293}, {"gradient": 3.703343271542344, "_id": "eP0DaQ8dGP", "elevation": -3125.227, "temperature": 92.96914848540365, "vertical_depth": 3150.227}, {"gradient": 3.67295348006529, "_id": "RzMLnam7B3", "elevation": -3135.161, "temperature": 93.00563560527462, "vertical_depth": 3160.161}, {"gradient": 3.67295348007118, "_id": "6dzQkrNR3a", "elevation": -3145.095, "temperature": 93.04212272514565, "vertical_depth": 3170.095}, {"gradient": 3.6424964286673975, "_id": "DqmWwNkoaE", "elevation": -3155.029, "temperature": 93.07830728466803, "vertical_depth": 3180.029}, {"gradient": 3.6424964286673975, "_id": "M59P4YoXoN", "elevation": -3164.963, "temperature": 93.11449184419041, "vertical_depth": 3189.963}, {"gradient": 3.6119726047520837, "_id": "kej47kWA7O", "elevation": -3174.897, "temperature": 93.15037318004602, "vertical_depth": 3199.897}, {"gradient": 3.6119726047576406, "_id": "d2lj0xBV00", "elevation": -3184.831, "temperature": 93.18625451590168, "vertical_depth": 3209.831}, {"gradient": 3.581381972733228, "_id": "wPK1MmkAkE", "elevation": -3194.765, "temperature": 93.22183196441881, "vertical_depth": 3219.765}, {"gradient": 3.581381972744508, "_id": "795Yoqm2mQ", "elevation": -3204.699, "temperature": 93.25740941293606, "vertical_depth": 3229.699}, {"gradient": 3.5507244990165017, "_id": "2qwEKBoj33", "elevation": -3214.633, "temperature": 93.29268231010929, "vertical_depth": 3239.633}, {"gradient": 3.5507244990163396, "_id": "B621yQXvog", "elevation": -3224.567, "temperature": 93.32795520728251, "vertical_depth": 3249.567}, {"gradient": 3.475005747495753, "_id": "A2E3mO6XQE", "elevation": -3234.501, "temperature": 93.36247591437814, "vertical_depth": 3259.501}, {"gradient": 3.4753555920232233, "_id": "D8K6pLRmj1", "elevation": -3244.434, "temperature": 93.3969966214737, "vertical_depth": 3269.434}, {"gradient": 3.356220305942518, "_id": "mNrXvDb6Qn", "elevation": -3254.368, "temperature": 93.43033731399294, "vertical_depth": 3279.368}, {"gradient": 3.3562203059423643, "_id": "Gy9wmWbVMx", "elevation": -3264.302, "temperature": 93.46367800651217, "vertical_depth": 3289.302}, {"gradient": 3.3254726140181026, "_id": "jX9lAQwMg3", "elevation": -3274.236, "temperature": 93.49671325145982, "vertical_depth": 3299.236}, {"gradient": 3.3254726140122286, "_id": "W10EaMmBRE", "elevation": -3284.17, "temperature": 93.52974849640742, "vertical_depth": 3309.17}, {"gradient": 3.294657189875625, "_id": "7V5AQkWa9Z", "elevation": -3294.104, "temperature": 93.56247762093165, "vertical_depth": 3319.104}, {"gradient": 3.2946571898697523, "_id": "8mBJrRxAKe", "elevation": -3304.038, "temperature": 93.59520674545581, "vertical_depth": 3329.038}, {"gradient": 3.263779188189913, "_id": "dOmbqRjaka", "elevation": -3313.972, "temperature": 93.62762912791129, "vertical_depth": 3338.972}, {"gradient": 3.2637791881900626, "_id": "wOZA4Bag8O", "elevation": -3323.906, "temperature": 93.66005151036677, "vertical_depth": 3348.906}, {"gradient": 3.2328377321283566, "_id": "PAnaMWPBXJ", "elevation": -3333.84, "temperature": 93.69216652039773, "vertical_depth": 3358.84}, {"gradient": 3.2328377321285044, "_id": "E3N0Pbj5xm", "elevation": -3343.774, "temperature": 93.7242815304287, "vertical_depth": 3368.774}, {"gradient": 3.2018311516822004, "_id": "0qmpZYXbp9", "elevation": -3353.708, "temperature": 93.75608852108951, "vertical_depth": 3378.708}, {"gradient": 3.201831151682347, "_id": "jKAY9vq5YB", "elevation": -3363.642, "temperature": 93.78789551175032, "vertical_depth": 3388.642}, {"gradient": 3.1349291634182794, "_id": "VRDVN5dgLR", "elevation": -3373.576, "temperature": 93.81903789805972, "vertical_depth": 3398.576}, {"gradient": 3.134929163424002, "_id": "Lx2O7yqmGn", "elevation": -3383.51, "temperature": 93.85018028436917, "vertical_depth": 3408.51}, {"gradient": 3.0493092457782454, "_id": "nzNb2vM9bR", "elevation": -3393.444, "temperature": 93.88047212241673, "vertical_depth": 3418.444}, {"gradient": 3.0493092457838284, "_id": "Z5a3zmWYjY", "elevation": -3403.378, "temperature": 93.91076396046435, "vertical_depth": 3428.378}, {"gradient": 3.018224346007235, "_id": "3BK0E9Mprg", "elevation": -3413.312, "temperature": 93.94074700111759, "vertical_depth": 3438.312}, {"gradient": 3.018224346007097, "_id": "JZaov3x6z6", "elevation": -3423.246, "temperature": 93.97073004177082, "vertical_depth": 3448.246}, {"gradient": 2.987063851510166, "_id": "qRv1Wa9PPO", "elevation": -3433.18, "temperature": 94.00040353407172, "vertical_depth": 3458.18}, {"gradient": 2.987063851510029, "_id": "jRGm7pKeeM", "elevation": -3443.114, "temperature": 94.03007702637262, "vertical_depth": 3468.114}, {"gradient": 2.9558291370921017, "_id": "9qGJ6B0jjM", "elevation": -3453.048, "temperature": 94.0594402330205, "vertical_depth": 3478.048}, {"gradient": 2.955829137097689, "_id": "3eG8B97MMz", "elevation": -3462.982, "temperature": 94.08880343966842, "vertical_depth": 3487.982}, {"gradient": 4.063037311542814, "_id": "XE7GY1Dq6Z", "elevation": -3463.082, "temperature": 94.08920974339958, "vertical_depth": 3488.082}, {"gradient": 4.06303731097438, "_id": "4GbxVWB4XR", "elevation": -3463.182, "temperature": 94.08961604713068, "vertical_depth": 3488.182}, {"gradient": 4.272907182103631, "_id": "ExL1j9vwVP", "elevation": -3473.132, "temperature": 94.13213147359261, "vertical_depth": 3498.132}, {"gradient": 4.2733366631696805, "_id": "OPQzJ8OEQ3", "elevation": -3483.081, "temperature": 94.17464690005448, "vertical_depth": 3508.081}, {"gradient": 4.2306239960518, "_id": "ndKpkzZMga", "elevation": -3493.031, "temperature": 94.2167416088152, "vertical_depth": 3518.031}, {"gradient": 4.230623996057319, "_id": "rjg4pX2aEL", "elevation": -3502.981, "temperature": 94.25883631757597, "vertical_depth": 3527.981}, {"gradient": 4.1882152385571265, "_id": "3jYMyw42j4", "elevation": -3512.931, "temperature": 94.30050905919961, "vertical_depth": 3537.931}, {"gradient": 4.188636207025752, "_id": "r1lPygG318", "elevation": -3522.88, "temperature": 94.34218180082331, "vertical_depth": 3547.88}, {"gradient": 4.146360198684395, "_id": "g2dGa6N5Ov", "elevation": -3532.828, "temperature": 94.38342979207982, "vertical_depth": 3557.828}, {"gradient": 4.146360198684395, "_id": "ge1nLvgEoy", "elevation": -3542.776, "temperature": 94.42467778333634, "vertical_depth": 3567.776}, {"gradient": 4.105367248388513, "_id": "ZNaJ2xLmxK", "elevation": -3552.718, "temperature": 94.46549334451981, "vertical_depth": 3577.718}, {"gradient": 4.107846334896824, "_id": "Z5M8W21d2K", "elevation": -3562.654, "temperature": 94.50630890570335, "vertical_depth": 3587.654}, {"gradient": 4.067743978715058, "_id": "JpL3XoQro7", "elevation": -3572.579, "temperature": 94.5466812646921, "vertical_depth": 3597.579}, {"gradient": 4.07143596094684, "_id": "7PmgBE4W33", "elevation": -3582.495, "temperature": 94.58705362368084, "vertical_depth": 3607.495}, {"gradient": 4.031463780209498, "_id": "q30gpdNvDm", "elevation": -3592.398, "temperature": 94.62697720949626, "vertical_depth": 3617.398}, {"gradient": 4.037171181658105, "_id": "O10AzLk2RW", "elevation": -3602.287, "temperature": 94.66690079531168, "vertical_depth": 3627.287}, {"gradient": 3.9969098990546117, "_id": "0lJa7YewRQ", "elevation": -3612.162, "temperature": 94.70637028056484, "vertical_depth": 3637.162}, {"gradient": 4.003396414764456, "_id": "zXVoDnj1Me", "elevation": -3622.021, "temperature": 94.745839765818, "vertical_depth": 3647.021}, {"gradient": 3.964065061013831, "_id": "jXJaQxKPd4", "elevation": -3631.862, "temperature": 94.78485013008344, "vertical_depth": 3656.862}, {"gradient": 3.97132894893996, "_id": "RQazjA1BX0", "elevation": -3641.685, "temperature": 94.82386049434888, "vertical_depth": 3666.685}, {"gradient": 3.9321172921434195, "_id": "eP2B409ZOo", "elevation": -3651.488, "temperature": 94.86240704016376, "vertical_depth": 3676.488}, {"gradient": 3.940558762510824, "_id": "gdvolrw5no", "elevation": -3661.27, "temperature": 94.90095358597864, "vertical_depth": 3686.27}, {"gradient": 3.9014606355983914, "_id": "KrEK5xkaAz", "elevation": -3671.03, "temperature": 94.93903184178208, "vertical_depth": 3696.03}, {"gradient": 3.9114797949093405, "_id": "G1Y05PEK75", "elevation": -3680.765, "temperature": 94.97711009758552, "vertical_depth": 3705.765}, {"gradient": 3.872886904189077, "_id": "Agk2namP3v", "elevation": -3690.475, "temperature": 95.0147158294252, "vertical_depth": 3715.475}, {"gradient": 3.8836860311493617, "_id": "gG2KrNP7EQ", "elevation": -3700.158, "temperature": 95.05232156126482, "vertical_depth": 3725.158}, {"gradient": 3.845198770371048, "_id": "bYEvbMzea7", "elevation": -3709.814, "temperature": 95.08945080059152, "vertical_depth": 3734.814}, {"gradient": 3.8571825604243735, "_id": "kpk10Q2AqO", "elevation": -3719.44, "temperature": 95.12658003991817, "vertical_depth": 3744.44}, {"gradient": 3.8191947597177682, "_id": "A6gmJqP755", "elevation": -3729.036, "temperature": 95.16322903283242, "vertical_depth": 3754.036}, {"gradient": 3.83197332855001, "_id": "qQ6ejdD58j", "elevation": -3738.6, "temperature": 95.19987802574667, "vertical_depth": 3763.6}, {"gradient": 3.7940692610332123, "_id": "Pj4nPMJVZP", "elevation": -3748.132, "temperature": 95.23604309394284, "vertical_depth": 3773.132}, {"gradient": 3.807650894521897, "_id": "AZPr7nwz2W", "elevation": -3757.63, "temperature": 95.27220816213901, "vertical_depth": 3782.63}, {"gradient": 3.7710466540164274, "_id": "YBOkGzNbRz", "elevation": -3767.091, "temperature": 95.30788603453266, "vertical_depth": 3792.091}, {"gradient": 3.785450651851965, "_id": "Z5ZrgEAl9E", "elevation": -3776.516, "temperature": 95.34356390692636, "vertical_depth": 3801.516}, {"gradient": 3.7489683677328656, "_id": "2NXr2nQ6Yy", "elevation": -3785.902, "temperature": 95.3787517240259, "vertical_depth": 3810.902}, {"gradient": 3.764610794858402, "_id": "RoAJ3DEk4e", "elevation": -3795.249, "temperature": 95.41393954112544, "vertical_depth": 3820.249}, {"gradient": 3.691249142400578, "_id": "wYG8dj2oqm", "elevation": -3804.556, "temperature": 95.44829399689377, "vertical_depth": 3829.556}, {"gradient": 3.707982273956812, "_id": "4BXE2oqmdM", "elevation": -3813.821, "temperature": 95.48264845266198, "vertical_depth": 3838.821}, {"gradient": 3.6197516791805566, "_id": "vvoGr5ODb8", "elevation": -3823.042, "temperature": 95.5160261828957, "vertical_depth": 3848.042}, {"gradient": 3.6367106377995584, "_id": "yMZXG35xqk", "elevation": -3832.22, "temperature": 95.54940391312942, "vertical_depth": 3857.22}, {"gradient": 3.471039647054454, "_id": "yJEnqPaB13", "elevation": -3841.351, "temperature": 95.58109797614668, "vertical_depth": 3866.351}, {"gradient": 3.4886145313496995, "_id": "V5wzb7YedD", "elevation": -3850.436, "temperature": 95.61279203916399, "vertical_depth": 3875.436}, {"gradient": 3.453541558821925, "_id": "PLOPermJyd", "elevation": -3859.473, "temperature": 95.64400169423106, "vertical_depth": 3884.473}, {"gradient": 3.472755654515371, "_id": "5BElLZqoAX", "elevation": -3868.46, "temperature": 95.6752113492982, "vertical_depth": 3893.46}, {"gradient": 3.437855859437631, "_id": "95aAd6JNPR", "elevation": -3877.397, "temperature": 95.70593546711399, "vertical_depth": 3902.397}, {"gradient": 3.457976118828701, "_id": "qWanE9xXJ4", "elevation": -3886.282, "temperature": 95.73665958492978, "vertical_depth": 3911.282}, {"gradient": 3.4203077879657746, "_id": "9lK9nXRe63", "elevation": -3895.136, "temperature": 95.76694299008443, "vertical_depth": 3920.136}, {"gradient": 3.420307787972195, "_id": "6g2JO1EWjX", "elevation": -3903.99, "temperature": 95.79722639523914, "vertical_depth": 3928.99}, {"gradient": 3.3763822531617134, "_id": "4xqDl5r9LG", "elevation": -3912.844, "temperature": 95.82712088370863, "vertical_depth": 3937.844}, {"gradient": 3.3767636359920536, "_id": "8gOXMonpnZ", "elevation": -3921.697, "temperature": 95.85701537217807, "vertical_depth": 3946.697}, {"gradient": 3.3324452796824766, "_id": "0Da1xePZxd", "elevation": -3930.551, "temperature": 95.88652084268438, "vertical_depth": 3955.551}, {"gradient": 3.33282169957807, "_id": "qZg8LN0Vpw", "elevation": -3939.404, "temperature": 95.91602631319074, "vertical_depth": 3964.404}, {"gradient": 3.2884064970461733, "_id": "BJxbN8eGWO", "elevation": -3948.258, "temperature": 95.94514186431559, "vertical_depth": 3973.258}, {"gradient": 3.2884064970524243, "_id": "NQzAwWmBMP", "elevation": -3957.112, "temperature": 95.97425741544049, "vertical_depth": 3982.112}, {"gradient": 3.244625350540505, "_id": "5l6EaYmj1j", "elevation": -3965.965, "temperature": 96.00298208366883, "vertical_depth": 3990.965}, {"gradient": 3.244258891844675, "_id": "pOmlvVw3Wx", "elevation": -3974.819, "temperature": 96.03170675189722, "vertical_depth": 3999.819}, {"gradient": 3.200008798485417, "_id": "3vW3Z2lBRb", "elevation": -3983.673, "temperature": 96.06003962979901, "vertical_depth": 4008.673}, {"gradient": 3.200370258865044, "_id": "rm7LZlKOWz", "elevation": -3992.526, "temperature": 96.08837250770074, "vertical_depth": 4017.526}, {"gradient": 3.155659244827255, "_id": "Mj4k1MRVN3", "elevation": -4001.38, "temperature": 96.11631271465444, "vertical_depth": 4026.38}, {"gradient": 3.155659244827417, "_id": "ajvdNpGYPX", "elevation": -4010.234, "temperature": 96.14425292160814, "vertical_depth": 4035.234}, {"gradient": 3.1115618782775987, "_id": "4gL7pDJKOn", "elevation": -4019.087, "temperature": 96.17179957891653, "vertical_depth": 4044.087}, {"gradient": 3.111210448196919, "_id": "W16ZKrBndL", "elevation": -4027.941, "temperature": 96.19934623622487, "vertical_depth": 4052.941}, {"gradient": 3.067010875565159, "_id": "1dJq0B8nNn", "elevation": -4036.794, "temperature": 96.22649848350625, "vertical_depth": 4061.794}, {"gradient": 3.0666644772281146, "_id": "pmkez8ZMw2", "elevation": -4045.648, "temperature": 96.25365073078763, "vertical_depth": 4070.648}, {"gradient": 3.0220243416886974, "_id": "YkpDR9OVjP", "elevation": -4054.502, "temperature": 96.28040773430894, "vertical_depth": 4079.502}, {"gradient": 3.022365697651752, "_id": "xpX8bKe41x", "elevation": -4063.355, "temperature": 96.30716473783025, "vertical_depth": 4088.355}, {"gradient": 2.977285594848635, "_id": "nobJpNGa02", "elevation": -4072.209, "temperature": 96.33352562448704, "vertical_depth": 4097.209}, {"gradient": 2.977285594848482, "_id": "64qXlyzMQR", "elevation": -4081.063, "temperature": 96.35988651114383, "vertical_depth": 4106.063}, {"gradient": 2.932775905603499, "_id": "zdGZwJXL0l", "elevation": -4089.916, "temperature": 96.38585037623614, "vertical_depth": 4114.916}, {"gradient": 2.9324446682136913, "_id": "6n3Vy49pld", "elevation": -4098.77, "temperature": 96.4118142413285, "vertical_depth": 4123.77}, {"gradient": 2.887830356059863, "_id": "nrmw71d53O", "elevation": -4107.623, "temperature": 96.4373802034707, "vertical_depth": 4132.623}, {"gradient": 2.8875041949685563, "_id": "WQ5ZqwxkJG", "elevation": -4116.477, "temperature": 96.46294616561295, "vertical_depth": 4141.477}, {"gradient": 2.8424641433914446, "_id": "xbMNxXe5v8", "elevation": -4125.331, "temperature": 96.48811334313854, "vertical_depth": 4150.331}, {"gradient": 2.8427852169421017, "_id": "ze9XapjkMY", "elevation": -4134.184, "temperature": 96.51328052066413, "vertical_depth": 4159.184}, {"gradient": 2.797305646327584, "_id": "n46MyYzoAN", "elevation": -4143.038, "temperature": 96.53804786485671, "vertical_depth": 4168.038}, {"gradient": 2.797305646327297, "_id": "Ej3bQ0XYLL", "elevation": -4151.892, "temperature": 96.56281520904929, "vertical_depth": 4176.892}, {"gradient": 2.7523531894531277, "_id": "Qk1odpN0lX", "elevation": -4160.745, "temperature": 96.58718179183552, "vertical_depth": 4185.745}, {"gradient": 2.752042329594305, "_id": "KNx4JGdAqG", "elevation": -4169.599, "temperature": 96.61154837462175, "vertical_depth": 4194.599}, {"gradient": 2.7066820611010374, "_id": "bDa14BAM1m", "elevation": -4178.453, "temperature": 96.63551333759074, "vertical_depth": 4203.453}, {"gradient": 2.7069877972557648, "_id": "GZXxdW2lBk", "elevation": -4187.306, "temperature": 96.65947830055984, "vertical_depth": 4212.306}, {"gradient": 2.6612259720340967, "_id": "0LKzaQP1Gq", "elevation": -4196.16, "temperature": 96.68304079531623, "vertical_depth": 4221.16}, {"gradient": 2.6615265736349745, "_id": "ox0W8mGdAA", "elevation": -4205.013, "temperature": 96.70660329007262, "vertical_depth": 4230.013}, {"gradient": 2.611099061152548, "_id": "gmpWxGR2dE", "elevation": -4213.867, "temperature": 96.72972196116007, "vertical_depth": 4238.867}, {"gradient": 2.6110990611463962, "_id": "ozr95X4RNN", "elevation": -4222.721, "temperature": 96.75284063224746, "vertical_depth": 4247.721}, {"gradient": 2.4935416477327665, "_id": "dmNjOQbANp", "elevation": -4231.574, "temperature": 96.77491595645483, "vertical_depth": 4256.574}, {"gradient": 2.493260018910607, "_id": "PKzepEMWzB", "elevation": -4240.428, "temperature": 96.79699128066227, "vertical_depth": 4265.428}, {"gradient": 2.4475282936467186, "_id": "eNwDVzaGNQ", "elevation": -4249.282, "temperature": 96.81866169617422, "vertical_depth": 4274.282}, {"gradient": 2.4478047567997905, "_id": "eoXxRW0a5e", "elevation": -4258.135, "temperature": 96.84033211168617, "vertical_depth": 4283.135}, {"gradient": 2.4017024306737778, "_id": "w7Ov165j7e", "elevation": -4266.989, "temperature": 96.86159678500735, "vertical_depth": 4291.989}, {"gradient": 2.40197371751767, "_id": "5Z2OqP3gZX", "elevation": -4275.842, "temperature": 96.88286145832853, "vertical_depth": 4300.842}, {"gradient": 2.3557831345438434, "_id": "YDRg5NZ8NQ", "elevation": -4284.696, "temperature": 96.90371956220179, "vertical_depth": 4309.696}, {"gradient": 2.355783134550263, "_id": "BJ8WP94evV", "elevation": -4293.55, "temperature": 96.9245776660751, "vertical_depth": 4318.55}, {"gradient": 2.3100318743046664, "_id": "e9YdZgm4WX", "elevation": -4302.403, "temperature": 96.94502837825831, "vertical_depth": 4327.403}, {"gradient": 2.309770971676174, "_id": "VlEXxYpPwp", "elevation": -4311.257, "temperature": 96.96547909044153, "vertical_depth": 4336.257}, {"gradient": 2.26366585037176, "_id": "0jNlZQpd8Z", "elevation": -4320.111, "temperature": 96.98552158788073, "vertical_depth": 4345.111}, {"gradient": 2.2639215451540573, "_id": "XXLnBgQVe0", "elevation": -4328.964, "temperature": 97.00556408531997, "vertical_depth": 4353.964}, {"gradient": 2.2174652540420627, "_id": "3axnVz9PD9", "elevation": -4337.818, "temperature": 97.02519752267926, "vertical_depth": 4362.818}, {"gradient": 2.21746525403587, "_id": "qQ9ogVOmz3", "elevation": -4346.672, "temperature": 97.0448309600385, "vertical_depth": 4371.672}, {"gradient": 2.171416260708079, "_id": "6bmgw4EG1g", "elevation": -4355.525, "temperature": 97.06405450819454, "vertical_depth": 4380.525}, {"gradient": 2.1711710137909446, "_id": "964G3JvRVG", "elevation": -4364.379, "temperature": 97.08327805635065, "vertical_depth": 4389.379}, {"gradient": 2.1250236684115458, "_id": "Lw3yBzKo6l", "elevation": -4373.232, "temperature": 97.1020908908871, "vertical_depth": 4398.232}, {"gradient": 2.124783661214156, "_id": "yJ1g4AbYy5", "elevation": -4382.086, "temperature": 97.12090372542349, "vertical_depth": 4407.086}, {"gradient": 2.0783069518167654, "_id": "kLajJRdewW", "elevation": -4390.94, "temperature": 97.13930505517487, "vertical_depth": 4415.94}, {"gradient": 2.078541709194382, "_id": "QnzbGx7Xoo", "elevation": -4399.793, "temperature": 97.15770638492637, "vertical_depth": 4424.793}, {"gradient": 2.0317417394628103, "_id": "8mPAd1oBW6", "elevation": -4408.647, "temperature": 97.17569542628758, "vertical_depth": 4433.647}, {"gradient": 2.03174173945639, "_id": "dEAjlexDRl", "elevation": -4417.501, "temperature": 97.19368446764872, "vertical_depth": 4442.501}, {"gradient": 1.985313081623382, "_id": "QArj4qZxzR", "elevation": -4426.354, "temperature": 97.21126044436033, "vertical_depth": 4451.354}, {"gradient": 1.9850888538076803, "_id": "wlR6VvQY8Q", "elevation": -4435.208, "temperature": 97.22883642107195, "vertical_depth": 4460.208}, {"gradient": 1.9385671322716973, "_id": "XOJ5DydL7M", "elevation": -4444.061, "temperature": 97.24599855589395, "vertical_depth": 4469.061}, {"gradient": 1.9383481840976893, "_id": "e0N5WkrRMe", "elevation": -4452.915, "temperature": 97.26316069071595, "vertical_depth": 4477.915}, {"gradient": 1.891521203800382, "_id": "d2pLY3V8BN", "elevation": -4461.769, "temperature": 97.2799082194544, "vertical_depth": 4486.769}, {"gradient": 1.8917348625831885, "_id": "QjYWzkmZ0r", "elevation": -4470.622, "temperature": 97.29665574819285, "vertical_depth": 4495.622}, {"gradient": 1.7424876996664302, "_id": "QzNRjXZyw8", "elevation": -4479.476, "temperature": 97.3120837342857, "vertical_depth": 4504.476}, {"gradient": 1.742487699659831, "_id": "we17kZY2mO", "elevation": -4488.33, "temperature": 97.32751172037848, "vertical_depth": 4513.33}, {"gradient": 1.688234506170024, "_id": "wpyK9VzXOZ", "elevation": -4497.183, "temperature": 97.3424576604616, "vertical_depth": 4522.183}, {"gradient": 1.6880438313895276, "_id": "kPev6NXngz", "elevation": -4506.037, "temperature": 97.35740360054473, "vertical_depth": 4531.037}, {"gradient": 1.6413268417018865, "_id": "QOGd4yWeRQ", "elevation": -4514.891, "temperature": 97.37193590840116, "vertical_depth": 4539.891}, {"gradient": 1.6415122395086976, "_id": "3AM5n9D0wB", "elevation": -4523.744, "temperature": 97.38646821625753, "vertical_depth": 4548.744}, {"gradient": 1.5945319690763518, "_id": "Dn4lj01ZdN", "elevation": -4532.598, "temperature": 97.40058620231173, "vertical_depth": 4557.598}, {"gradient": 1.594712081125307, "_id": "Erz83vmJWm", "elevation": -4541.451, "temperature": 97.41470418836593, "vertical_depth": 4566.451}, {"gradient": 1.5476595145896628, "_id": "Q2j8pWexR0", "elevation": -4550.305, "temperature": 97.42840716570811, "vertical_depth": 4575.305}, {"gradient": 1.5476595145834018, "_id": "Z5bJ2rLVy2", "elevation": -4559.159, "temperature": 97.44211014305023, "vertical_depth": 4584.159}, {"gradient": 1.5008658954988587, "_id": "MrlWAJv45Q", "elevation": -4568.012, "temperature": 97.45539730882308, "vertical_depth": 4593.012}, {"gradient": 1.5006963827544537, "_id": "NjK3YO12wx", "elevation": -4576.866, "temperature": 97.46868447459599, "vertical_depth": 4601.866}, {"gradient": 1.4536516858327073, "_id": "qnBpQK7LjD", "elevation": -4585.72, "temperature": 97.48155510662235, "vertical_depth": 4610.72}, {"gradient": 1.4538158845999196, "_id": "EQxNPY1je6", "elevation": -4594.573, "temperature": 97.49442573864872, "vertical_depth": 4619.573}, {"gradient": 1.4065352024783726, "_id": "7wl5QYJMJE", "elevation": -4603.427, "temperature": 97.50687920133146, "vertical_depth": 4628.427}, {"gradient": 1.406694079153114, "_id": "Wa7Vmb2BO0", "elevation": -4612.28, "temperature": 97.5193326640142, "vertical_depth": 4637.28}, {"gradient": 1.3593485655044197, "_id": "7qDpv1N6Oj", "elevation": -4621.134, "temperature": 97.53136833621318, "vertical_depth": 4646.134}, {"gradient": 1.3593485655044197, "_id": "dp2XMAvlvQ", "elevation": -4629.988, "temperature": 97.54340400841215, "vertical_depth": 4654.988}, {"gradient": 1.2651655935036472, "_id": "MDOjXdkGw6", "elevation": -4638.841, "temperature": 97.55460451941144, "vertical_depth": 4663.841}, {"gradient": 1.2650227015298763, "_id": "4x4Rq0jr9o", "elevation": -4647.695, "temperature": 97.56580503041079, "vertical_depth": 4672.695}, {"gradient": 1.1935840345865656, "_id": "qN3YvelWvO", "elevation": -4656.549, "temperature": 97.57637302345302, "vertical_depth": 4681.549}, {"gradient": 1.1937188571301085, "_id": "DDa0rkPd1E", "elevation": -4665.402, "temperature": 97.58694101649519, "vertical_depth": 4690.402}, {"gradient": 1.1461913700535147, "_id": "9Ql6BdaJMA", "elevation": -4674.256, "temperature": 97.59708939488564, "vertical_depth": 4699.256}, {"gradient": 1.1461913700472122, "_id": "OYX0eayzdG", "elevation": -4683.11, "temperature": 97.60723777327604, "vertical_depth": 4708.11}, {"gradient": 1.0988562573423695, "_id": "DgyjOKmoVZ", "elevation": -4691.963, "temperature": 97.61696594772229, "vertical_depth": 4716.963}, {"gradient": 1.0987321488877089, "_id": "Z5dLmeAEQV", "elevation": -4700.817, "temperature": 97.62669412216854, "vertical_depth": 4725.817}, {"gradient": 1.051326670994133, "_id": "W0ZoJyAnMw", "elevation": -4709.67, "temperature": 97.63600151718686, "vertical_depth": 4734.67}, {"gradient": 1.05120793069434, "_id": "eRj58koere", "elevation": -4718.524, "temperature": 97.64530891220522, "vertical_depth": 4743.524}, {"gradient": 1.003624519793917, "_id": "dmgjQBaZoq", "elevation": -4727.378, "temperature": 97.65419500370348, "vertical_depth": 4752.378}, {"gradient": 1.0037378852654055, "_id": "kXBWM128DV", "elevation": -4736.231, "temperature": 97.66308109520173, "vertical_depth": 4761.231}, {"gradient": 0.9559842832580585, "_id": "QEXB1z97bM", "elevation": -4745.085, "temperature": 97.6715453800457, "vertical_depth": 4770.085}, {"gradient": 0.9559842832516384, "_id": "YvDVP1RO9N", "elevation": -4753.939, "temperature": 97.68000966488961, "vertical_depth": 4778.939}, {"gradient": 0.17659307293292076, "_id": "o0aprNQajn", "elevation": -4754.027, "temperature": 97.68002520508003, "vertical_depth": 4779.027}, {"gradient": 0.17460888046311815, "_id": "a1ojnZzogD", "elevation": -4754.116, "temperature": 97.68004074527039, "vertical_depth": 4779.116}, {"gradient": 0.012479792327891346, "_id": "JyzabWXzA5", "elevation": -4762.678, "temperature": 97.6801475972523, "vertical_depth": 4787.678}, {"gradient": 0.012479792334530383, "_id": "DpKQR6lKny", "elevation": -4771.24, "temperature": 97.68025444923427, "vertical_depth": 4796.24}, {"gradient": -0.009237359601809707, "_id": "J5REy0XRwL", "elevation": -4779.801, "temperature": 97.68017536819872, "vertical_depth": 4804.801}, {"gradient": -0.00923628072309033, "_id": "xGlxJ76lLE", "elevation": -4788.363, "temperature": 97.68009628716317, "vertical_depth": 4813.363}, {"gradient": -0.03097906635685235, "_id": "3b7vrBe7g7", "elevation": -4796.925, "temperature": 97.67983104439702, "vertical_depth": 4821.925}, {"gradient": -0.03098268498392432, "_id": "jXQBVoYQ4G", "elevation": -4805.486, "temperature": 97.67956580163087, "vertical_depth": 4830.486}, {"gradient": -0.0527476954108314, "_id": "18KlJoZKlZ", "elevation": -4814.048, "temperature": 97.67911417586276, "vertical_depth": 4839.048}, {"gradient": -0.05274769540419237, "_id": "LRZEp0J9X7", "elevation": -4822.61, "temperature": 97.67866255009471, "vertical_depth": 4847.61}, {"gradient": -0.07455044837749912, "_id": "yrjaMDejl9", "elevation": -4831.171, "temperature": 97.67802432370615, "vertical_depth": 4856.171}, {"gradient": -0.07454174124071235, "_id": "D3P1NxOP1p", "elevation": -4839.733, "temperature": 97.67738609731765, "vertical_depth": 4864.733}, {"gradient": -0.0963607449431083, "_id": "v418Vor1L4", "elevation": -4848.295, "temperature": 97.67656105661945, "vertical_depth": 4873.295}, {"gradient": -0.0963720007112751, "_id": "oJAbKj3AoK", "elevation": -4856.856, "temperature": 97.67573601592136, "vertical_depth": 4881.856}, {"gradient": -0.11820421212235054, "_id": "gxVPD0jwKO", "elevation": -4865.418, "temperature": 97.67472395145717, "vertical_depth": 4890.418}, {"gradient": -0.11821801941926473, "_id": "9dArN0KARz", "elevation": -4873.979, "temperature": 97.67371188699292, "vertical_depth": 4898.979}, {"gradient": -0.14542274434486038, "_id": "dJyKOM8yDv", "elevation": -4882.541, "temperature": 97.67246677745584, "vertical_depth": 4907.541}, {"gradient": -0.14542274433822136, "_id": "v8z95YEgdZ", "elevation": -4891.103, "temperature": 97.67122166791881, "vertical_depth": 4916.103}, {"gradient": -0.16819375671916284, "_id": "WX47a5Oq1J", "elevation": -4899.664, "temperature": 97.66978176116754, "vertical_depth": 4924.664}, {"gradient": -0.16817411251221234, "_id": "yVA41EPAov", "elevation": -4908.226, "temperature": 97.66834185441621, "vertical_depth": 4933.226}, {"gradient": -0.18985429663218611, "_id": "P9V8j5EVVd", "elevation": -4916.788, "temperature": 97.66671632192845, "vertical_depth": 4941.788}, {"gradient": -0.18987647328170115, "_id": "GJvgAXZvOo", "elevation": -4925.349, "temperature": 97.66509078944068, "vertical_depth": 4950.349}, {"gradient": -0.21155644894764913, "_id": "0dMkzRgMPa", "elevation": -4933.911, "temperature": 97.6632794431248, "vertical_depth": 4958.911}, {"gradient": -0.21155644894764913, "_id": "RRPd9XOPR5", "elevation": -4942.473, "temperature": 97.6614680968089, "vertical_depth": 4967.473}, {"gradient": -0.2333071215114238, "_id": "zwJoav6JOJ", "elevation": -4951.034, "temperature": 97.65947075454164, "vertical_depth": 4976.034}, {"gradient": -0.23327987237318987, "_id": "XMRJXrbRAj", "elevation": -4959.596, "temperature": 97.65747341227438, "vertical_depth": 4984.596}, {"gradient": -0.2550238080471477, "_id": "gM6VXyq6Bv", "elevation": -4968.158, "temperature": 97.65528989842988, "vertical_depth": 4993.158}, {"gradient": -0.25505359706809516, "_id": "WG6Kv5Jar4", "elevation": -4976.719, "temperature": 97.65310638458539, "vertical_depth": 5001.719}, {"gradient": -0.2767872299996697, "_id": "8lnPVwynlG", "elevation": -4985.281, "temperature": 97.65073653232213, "vertical_depth": 5010.281}, {"gradient": -0.2767872299996697, "_id": "jaPWeORPOA", "elevation": -4993.843, "temperature": 97.64836668005887, "vertical_depth": 5018.843}, {"gradient": -0.29860173826749903, "_id": "eQA28zwAWg", "elevation": -5002.404, "temperature": 97.64581035057756, "vertical_depth": 5027.404}, {"gradient": -0.29856686303530366, "_id": "9GvWMyQvkk", "elevation": -5010.966, "temperature": 97.64325402109625, "vertical_depth": 5035.966}, {"gradient": -0.3203636536016479, "_id": "29LAjJZLRq", "elevation": -5019.528, "temperature": 97.64051106749412, "vertical_depth": 5044.528}, {"gradient": -0.32040107488383734, "_id": "kR7JeW0avM", "elevation": -5028.089, "temperature": 97.63776811389204, "vertical_depth": 5053.089}, {"gradient": -0.34217742391861966, "_id": "657YnJA7Zp", "elevation": -5036.651, "temperature": 97.63483839078845, "vertical_depth": 5061.651}, {"gradient": -0.34217742392525863, "_id": "dXa5kDxaZd", "elevation": -5045.213, "temperature": 97.6319086676848, "vertical_depth": 5070.213}, {"gradient": -0.41551520868705544, "_id": "WdE3OxmElO", "elevation": -5053.774, "temperature": 97.62835144198323, "vertical_depth": 5078.774}, {"gradient": -0.41546667852293057, "_id": "nrNxV8jNYp", "elevation": -5062.336, "temperature": 97.62479421628171, "vertical_depth": 5087.336}, {"gradient": -0.45281508595998504, "_id": "RgKon8ZKAN", "elevation": -5070.898, "temperature": 97.62091721351572, "vertical_depth": 5095.898}, {"gradient": -0.45286797873957296, "_id": "E2l5N3ElRd", "elevation": -5079.459, "temperature": 97.61704021074974, "vertical_depth": 5104.459}, {"gradient": -0.47463131230833805, "_id": "ekEYnV8E7D", "elevation": -5088.021, "temperature": 97.61297641745375, "vertical_depth": 5113.021}, {"gradient": -0.474631312314977, "_id": "8ngrjBdgze", "elevation": -5096.583, "temperature": 97.60891262415771, "vertical_depth": 5121.583}, {"gradient": -0.4965168315840819, "_id": "wEb9zqlbNJ", "elevation": -5105.144, "temperature": 97.60466194356252, "vertical_depth": 5130.144}, {"gradient": -0.4964588408306091, "_id": "0azeDr0zyP", "elevation": -5113.706, "temperature": 97.60041126296733, "vertical_depth": 5138.706}, {"gradient": -0.5182957319127655, "_id": "n1q46JaqGz", "elevation": -5122.268, "temperature": 97.59597361491069, "vertical_depth": 5147.268}, {"gradient": -0.5183562734003457, "_id": "KzeGWV8ebB", "elevation": -5130.829, "temperature": 97.59153596685411, "vertical_depth": 5155.829}, {"gradient": -0.5401397760374393, "_id": "0bq1JExqaQ", "elevation": -5139.391, "temperature": 97.58691129009168, "vertical_depth": 5164.391}, {"gradient": -0.5402028691144747, "_id": "BJBgVNpBrp", "elevation": -5147.952, "temperature": 97.58228661332919, "vertical_depth": 5172.952}, {"gradient": -0.5619884368542024, "_id": "OWrlVKprLy", "elevation": -5156.514, "temperature": 97.57747486833284, "vertical_depth": 5181.514}, {"gradient": -0.5619884368542024, "_id": "Bwgrdmegn6", "elevation": -5165.076, "temperature": 97.5726631233365, "vertical_depth": 5190.076}, {"gradient": -0.5839069746453212, "_id": "AEVPo2kVqr", "elevation": -5173.637, "temperature": 97.56766429572656, "vertical_depth": 5198.637}, {"gradient": -0.5838387771410456, "_id": "doJ4b5DJ8d", "elevation": -5182.199, "temperature": 97.56266546811668, "vertical_depth": 5207.199}, {"gradient": -0.6056873612104982, "_id": "q12QJpM2vo", "elevation": -5190.761, "temperature": 97.55747957292999, "vertical_depth": 5215.761}, {"gradient": -0.6057581108147366, "_id": "YpOJ9V1OYP", "elevation": -5199.322, "temperature": 97.55229367774331, "vertical_depth": 5224.322}, {"gradient": -3.479189563148095, "_id": "7WlrpjvlRJ", "elevation": -5199.411, "temperature": 97.55198402987219, "vertical_depth": 5224.411}, {"gradient": -3.4791895625094047, "_id": "v6o9J1r0w8", "elevation": -5199.5, "temperature": 97.55167438200112, "vertical_depth": 5224.5}, {"gradient": -4.068723165957455, "_id": "oawx0n9wV4", "elevation": -5207.184, "temperature": 97.5204103131939, "vertical_depth": 5232.184}, {"gradient": -4.068193728981126, "_id": "dDZONVrZlX", "elevation": -5214.869, "temperature": 97.48914624438669, "vertical_depth": 5239.869}, {"gradient": -4.089239184430755, "_id": "lwDl83YD1J", "elevation": -5222.553, "temperature": 97.45772453049352, "vertical_depth": 5247.553}, {"gradient": -4.089239184430755, "_id": "rNwXgmbwq2", "elevation": -5230.237, "temperature": 97.42630281660036, "vertical_depth": 5255.237}, {"gradient": -4.093936392689807, "_id": "ezd2ZxWdLx", "elevation": -5230.326, "temperature": 97.4259384562614, "vertical_depth": 5255.326}, {"gradient": -4.093936392051116, "_id": "eW6wyxP6pd", "elevation": -5230.415, "temperature": 97.42557409592251, "vertical_depth": 5255.415}, {"gradient": -4.111217170486297, "_id": "1ZrQ6LbrY3", "elevation": -5238.284, "temperature": 97.39322292800796, "vertical_depth": 5263.284}, {"gradient": -4.110694779478432, "_id": "q68yvYz8g6", "elevation": -5246.154, "temperature": 97.36087176009346, "vertical_depth": 5271.154}, {"gradient": -4.132080101711382, "_id": "RNoG4zroQX", "elevation": -5254.023, "temperature": 97.3283564217731, "vertical_depth": 5279.023}, {"gradient": -4.132080101711382, "_id": "AmvjJDqvV3", "elevation": -5261.892, "temperature": 97.29584108345273, "vertical_depth": 5286.892}, {"gradient": -4.152376084928925, "_id": "VV49XJj4nk", "elevation": -5269.762, "temperature": 97.26316188366434, "vertical_depth": 5294.762}, {"gradient": -4.152903772835753, "_id": "eMwNqWBw2Q", "elevation": -5277.631, "temperature": 97.23048268387589, "vertical_depth": 5302.631}, {"gradient": -4.173143004415754, "_id": "0Odbx6ydJj", "elevation": -5285.501, "temperature": 97.19764004843114, "vertical_depth": 5310.501}, {"gradient": -4.173673331402932, "_id": "ydwbl8Mwld", "elevation": -5293.37, "temperature": 97.16479741298633, "vertical_depth": 5318.37}, {"gradient": -4.194368170628313, "_id": "KnW2lOpWpv", "elevation": -5301.239, "temperature": 97.13179192985166, "vertical_depth": 5326.239}, {"gradient": -4.193835214062202, "_id": "9Q1GNB0108", "elevation": -5309.109, "temperature": 97.09878644671699, "vertical_depth": 5334.109}, {"gradient": -4.2149579476413095, "_id": "qO7wMre7el", "elevation": -5316.978, "temperature": 97.065618942627, "vertical_depth": 5341.978}, {"gradient": -4.214957947648533, "_id": "YaWqpYgWwZ", "elevation": -5324.847, "temperature": 97.03245143853695, "vertical_depth": 5349.847}, {"gradient": -4.234855707415639, "_id": "X4mRgE2GPa", "elevation": -5332.717, "temperature": 96.99912312411959, "vertical_depth": 5357.717}, {"gradient": -4.235393876904065, "_id": "OgeRGwQeqQ", "elevation": -5340.586, "temperature": 96.96579480970223, "vertical_depth": 5365.586}, {"gradient": -0.123962086598173, "_id": "G5ewg3Xe6v", "elevation": -5340.675, "temperature": 96.96578377707652, "vertical_depth": 5365.675}, {"gradient": -0.123962086598173, "_id": "pbomGa4o6Z", "elevation": -5340.764, "temperature": 96.96577274445082, "vertical_depth": 5365.764}, {"gradient": 0.6913355809842474, "_id": "88p0mOWpZj", "elevation": -5346.928, "temperature": 96.970034136972, "vertical_depth": 5371.928}, {"gradient": 0.6913355809934694, "_id": "gBpwg6dprg", "elevation": -5353.092, "temperature": 96.97429552949325, "vertical_depth": 5378.092}, {"gradient": 0.6740091153896983, "_id": "1KB47ePyLD", "elevation": -5359.256, "temperature": 96.97845012168051, "vertical_depth": 5384.256}, {"gradient": 0.6740091153897977, "_id": "zEqbna5qzz", "elevation": -5365.42, "temperature": 96.98260471386777, "vertical_depth": 5390.42}, {"gradient": 0.6566623238466223, "_id": "X9JPZlxJE9", "elevation": -5371.584, "temperature": 96.98665238043196, "vertical_depth": 5396.584}, {"gradient": 0.6566623238466223, "_id": "BprZaPwrOq", "elevation": -5377.748, "temperature": 96.99070004699615, "vertical_depth": 5402.748}, {"gradient": 0.6985328582165071, "_id": "ozGJq7oG0W", "elevation": -5377.837, "temperature": 96.99076221642053, "vertical_depth": 5402.837}, {"gradient": 0.6985328588623356, "_id": "16B9vEkBwb", "elevation": -5377.926, "temperature": 96.99082438584497, "vertical_depth": 5402.926}, {"gradient": 0.6500153812465501, "_id": "b3GYa0PG41", "elevation": -5386.599, "temperature": 96.99646196924652, "vertical_depth": 5411.599}, {"gradient": 0.6500153812465501, "_id": "679NXlGZVp", "elevation": -5395.272, "temperature": 97.00209955264808, "vertical_depth": 5420.272}, {"gradient": 0.5480361474627357, "_id": "ONbkGdY3xD", "elevation": -5403.946, "temperature": 97.00685321819117, "vertical_depth": 5428.946}, {"gradient": 0.548099336219882, "_id": "EaJDL8wKqo", "elevation": -5412.619, "temperature": 97.0116068837342, "vertical_depth": 5437.619}, {"gradient": 0.4409327733446203, "_id": "5nyw2xN1AJ", "elevation": -5421.292, "temperature": 97.01543109367742, "vertical_depth": 5446.292}, {"gradient": 0.44088193949289367, "_id": "qb2VZ1DMgJ", "elevation": -5429.966, "temperature": 97.01925530362058, "vertical_depth": 5454.966}, {"gradient": 0.37935408996161346, "_id": "ZypLz5rQY7", "elevation": -5438.639, "temperature": 97.02254544164282, "vertical_depth": 5463.639}, {"gradient": 0.3793103553420563, "_id": "OMgJRzvXVO", "elevation": -5447.313, "temperature": 97.02583557966506, "vertical_depth": 5472.313}, {"gradient": 0.3175940298269011, "_id": "kAQwxB2eap", "elevation": -5455.986, "temperature": 97.02859007268574, "vertical_depth": 5480.986}, {"gradient": 0.3175940298269011, "_id": "MLWzZgxo52", "elevation": -5464.659, "temperature": 97.03134456570643, "vertical_depth": 5489.659}, {"gradient": 0.2556226088825974, "_id": "mYPDqWLNBg", "elevation": -5473.333, "temperature": 97.03356183621588, "vertical_depth": 5498.333}, {"gradient": 0.2556520822607482, "_id": "Ro6245JM24", "elevation": -5482.006, "temperature": 97.03577910672533, "vertical_depth": 5507.006}, {"gradient": 0.19352773530543763, "_id": "pP9BXoazNG", "elevation": -5490.679, "temperature": 97.03745757277363, "vertical_depth": 5515.679}, {"gradient": 0.193505424060874, "_id": "QBEbn13KMk", "elevation": -5499.353, "temperature": 97.03913603882194, "vertical_depth": 5524.353}, {"gradient": 0.1312204757578189, "_id": "QPNWYLOpza", "elevation": -5508.026, "temperature": 97.04027411400818, "vertical_depth": 5533.026}, {"gradient": 0.13120534772121853, "_id": "Qz5L38BR5m", "elevation": -5516.7, "temperature": 97.04141218919432, "vertical_depth": 5541.7}, {"gradient": 0.06872978912369754, "_id": "zobZzQE8jE", "elevation": -5525.373, "temperature": 97.04200828265539, "vertical_depth": 5550.373}, {"gradient": 0.0687297891302444, "_id": "5oADaQn29A", "elevation": -5534.046, "temperature": 97.04260437611651, "vertical_depth": 5559.046}, {"gradient": 0.006054461575441836, "_id": "Z9bmWno2E8", "elevation": -5542.72, "temperature": 97.04265689251622, "vertical_depth": 5567.72}, {"gradient": 0.006055159650471613, "_id": "3pKjYELRo9", "elevation": -5551.393, "temperature": 97.04270940891587, "vertical_depth": 5576.393}, {"gradient": -0.056803929685949765, "_id": "K3WEPwByWY", "elevation": -5560.066, "temperature": 97.0422167484337, "vertical_depth": 5585.066}, {"gradient": -0.05679738092762632, "_id": "MeP70bz4Pl", "elevation": -5568.74, "temperature": 97.04172408795154, "vertical_depth": 5593.74}, {"gradient": -0.11984799722047078, "_id": "P6KyVMYook", "elevation": -5577.413, "temperature": 97.04068464627164, "vertical_depth": 5602.413}, {"gradient": -0.11983418029008143, "_id": "KGYpvrm119", "elevation": -5586.087, "temperature": 97.0396452045918, "vertical_depth": 5611.087}, {"gradient": -0.18307756253982232, "_id": "Kl7RZQy5lY", "elevation": -5594.76, "temperature": 97.0380573728919, "vertical_depth": 5619.76}, {"gradient": -0.1830775625332683, "_id": "jevE3gG9eP", "elevation": -5603.433, "temperature": 97.03646954119205, "vertical_depth": 5628.433}, {"gradient": -0.24646472903086702, "_id": "7gpyR1NogM", "elevation": -5612.107, "temperature": 97.03433170613243, "vertical_depth": 5637.107}, {"gradient": -0.2464931465087783, "_id": "zxwJ31X8x1", "elevation": -5620.78, "temperature": 97.03219387107276, "vertical_depth": 5645.78}, {"gradient": -0.31009527130944736, "_id": "Zw1DPym2dO", "elevation": -5629.453, "temperature": 97.0295044147847, "vertical_depth": 5654.453}, {"gradient": -0.3100595213292844, "_id": "PrBjP2GK23", "elevation": -5638.127, "temperature": 97.02681495849669, "vertical_depth": 5663.127}, {"gradient": -0.3738844603890032, "_id": "7V4AM2YQ2Z", "elevation": -5646.8, "temperature": 97.02357225857173, "vertical_depth": 5671.8}, {"gradient": -0.3738844603890032, "_id": "aXeja0PdXK", "elevation": -5655.473, "temperature": 97.02032955864678, "vertical_depth": 5680.473}, {"gradient": -0.43781075874859415, "_id": "reX9J2wPm2", "elevation": -5664.147, "temperature": 97.0165319881254, "vertical_depth": 5689.147}, {"gradient": -0.43786123848557534, "_id": "xZzYNoV825", "elevation": -5672.82, "temperature": 97.01273441760401, "vertical_depth": 5697.82}, {"gradient": -0.5019682545159522, "_id": "mjJz3adB5l", "elevation": -5681.494, "temperature": 97.00838034496434, "vertical_depth": 5706.494}, {"gradient": -0.502026131635076, "_id": "WzKo1qNJBW", "elevation": -5690.167, "temperature": 97.00402627232467, "vertical_depth": 5715.167}, {"gradient": -0.5663796671647467, "_id": "BmOvVKLJno", "elevation": -5698.84, "temperature": 96.99911406147135, "vertical_depth": 5723.84}, {"gradient": -0.5663143709153485, "_id": "AxD4zn3kqb", "elevation": -5707.514, "temperature": 96.99420185061803, "vertical_depth": 5732.514}]}, {"is_default": false, "name": "Anular A (Prod GL PO)", "calculated_from": "mGNrD2K2bD-5-a", "source": "GRADIENT", "_id": "b1Zvj05wQA", "data": [{"gradient": 0, "_id": "KYB6g3kEQZ", "elevation": -2047.0, "temperature": 60.00252170005223, "vertical_depth": 2072.0}, {"gradient": 421.47036286517607, "_id": "4yKn2YgJOM", "elevation": -2053.685, "temperature": 62.82005107580591, "vertical_depth": 2078.685}, {"gradient": 421.53341947240267, "_id": "OLZOb2jGWB", "elevation": -2060.369, "temperature": 65.63758045155953, "vertical_depth": 2085.369}, {"gradient": 330.31592451779557, "_id": "kPlwDGWERm", "elevation": -2067.05, "temperature": 67.84442114326293, "vertical_depth": 2092.05}, {"gradient": 330.414836308333, "_id": "YZnX4kybQq", "elevation": -2073.729, "temperature": 70.05126183496617, "vertical_depth": 2098.729}, {"gradient": 258.29164012298077, "_id": "YPVYAp5qbW", "elevation": -2080.405, "temperature": 71.77561682442729, "vertical_depth": 2105.405}, {"gradient": 258.33033549981224, "_id": "rKEv5Yb8OP", "elevation": -2087.08, "temperature": 73.49997181388846, "vertical_depth": 2112.08}, {"gradient": 274.3839777221178, "_id": "W891pZW7DN", "elevation": -2087.18, "temperature": 73.52741021166065, "vertical_depth": 2112.18}, {"gradient": 340.530775094874, "_id": "J6ryaMqZRe", "elevation": -2087.28, "temperature": 73.56146328917026, "vertical_depth": 2112.28}, {"gradient": 258.68007689636715, "_id": "B5kMDpmL9V", "elevation": -2096.532, "temperature": 75.95477136061544, "vertical_depth": 2121.532}, {"gradient": 258.65212054958505, "_id": "LvaAVz3N2M", "elevation": -2105.785, "temperature": 78.34807943206067, "vertical_depth": 2130.785}, {"gradient": 163.25129635649063, "_id": "wyREk5Bymz", "elevation": -2115.037, "temperature": 79.85848042595092, "vertical_depth": 2140.037}, {"gradient": 163.25129635649492, "_id": "dop2zvZo5A", "elevation": -2124.289, "temperature": 81.36888141984127, "vertical_depth": 2149.289}, {"gradient": 103.11312049052425, "_id": "Aq1npybd2R", "elevation": -2133.542, "temperature": 82.32298712374006, "vertical_depth": 2158.542}, {"gradient": 103.12426544517889, "_id": "aXlEx31XW3", "elevation": -2142.794, "temperature": 83.27709282763885, "vertical_depth": 2167.794}, {"gradient": 8.836630654522047, "_id": "kW2p7KNWzA", "elevation": -2142.894, "temperature": 83.2779764907043, "vertical_depth": 2167.894}, {"gradient": 8.836630653913428, "_id": "Qr9Ze6LrAJ", "elevation": -2142.994, "temperature": 83.2788601537697, "vertical_depth": 2167.994}, {"gradient": -2.4728260179783184, "_id": "4Moyq3KMGB", "elevation": -2152.935, "temperature": 83.25427779032498, "vertical_depth": 2177.935}, {"gradient": -2.472826017983923, "_id": "4A76VbXApX", "elevation": -2162.876, "temperature": 83.2296954268802, "vertical_depth": 2187.876}, {"gradient": 1.8554434534547526, "_id": "X6vNxj46bd", "elevation": -2172.816, "temperature": 83.24813853480754, "vertical_depth": 2197.816}, {"gradient": 1.8552568078947969, "_id": "dBWRMrAmWn", "elevation": -2182.757, "temperature": 83.26658164273482, "vertical_depth": 2207.757}, {"gradient": 4.248875153242349, "_id": "Vyo7xvAynZ", "elevation": -2192.698, "temperature": 83.3088197106332, "vertical_depth": 2217.698}, {"gradient": 4.248875153242155, "_id": "qdPBKODdBK", "elevation": -2202.639, "temperature": 83.35105777853158, "vertical_depth": 2227.639}, {"gradient": 5.568138044850304, "_id": "K7PV56p7Yb", "elevation": -2212.58, "temperature": 83.40641063883544, "vertical_depth": 2237.58}, {"gradient": 5.568138044844331, "_id": "BBGklexBXz", "elevation": -2222.521, "temperature": 83.46176349913924, "vertical_depth": 2247.521}, {"gradient": 6.290537603928421, "_id": "ZjB0z3Lj1Q", "elevation": -2232.462, "temperature": 83.52429773345989, "vertical_depth": 2257.462}, {"gradient": 6.290537603934139, "_id": "q5Yv9d05Ev", "elevation": -2242.403, "temperature": 83.5868319677806, "vertical_depth": 2267.403}, {"gradient": 6.681282908651198, "_id": "GMYDoQmMzl", "elevation": -2252.344, "temperature": 83.6532506011755, "vertical_depth": 2277.344}, {"gradient": 6.681282908645786, "_id": "YRAWj93RvY", "elevation": -2262.285, "temperature": 83.71966923457035, "vertical_depth": 2287.285}, {"gradient": 6.887976190844714, "_id": "3DjzBqvDjl", "elevation": -2272.226, "temperature": 83.78814260588354, "vertical_depth": 2297.226}, {"gradient": 6.887976190833594, "_id": "5XMjO58XB2", "elevation": -2282.167, "temperature": 83.85661597719661, "vertical_depth": 2307.167}, {"gradient": 6.993117686895945, "_id": "JdKW7zRdm8", "elevation": -2292.107, "temperature": 83.92612756700436, "vertical_depth": 2317.107}, {"gradient": 6.992414224700478, "_id": "JQgo4XPDgn", "elevation": -2302.048, "temperature": 83.9956391568121, "vertical_depth": 2327.048}, {"gradient": 7.040026992547117, "_id": "bwK90n5w1K", "elevation": -2311.989, "temperature": 84.06562406514502, "vertical_depth": 2336.989}, {"gradient": 7.040026992541721, "_id": "0PrqE1NPeZ", "elevation": -2321.93, "temperature": 84.13560897347787, "vertical_depth": 2346.93}, {"gradient": 7.056084915748029, "_id": "2Y4q6aQYLP", "elevation": -2331.871, "temperature": 84.20575351362533, "vertical_depth": 2356.871}, {"gradient": 7.056084915742632, "_id": "gGKz3LWGyj", "elevation": -2341.812, "temperature": 84.27589805377272, "vertical_depth": 2366.812}, {"gradient": 7.054611199268908, "_id": "KGlgbpAGGe", "elevation": -2351.753, "temperature": 84.34602794370466, "vertical_depth": 2376.753}, {"gradient": 7.054611199274948, "_id": "0xKePqbx0N", "elevation": -2361.694, "temperature": 84.41615783363665, "vertical_depth": 2386.694}, {"gradient": 7.04339518307062, "_id": "xEv8KnzElX", "elevation": -2371.635, "temperature": 84.48617622515155, "vertical_depth": 2396.635}, {"gradient": 7.043395183076661, "_id": "QpvR84wp9P", "elevation": -2381.576, "temperature": 84.55619461666652, "vertical_depth": 2406.576}, {"gradient": 7.0273675041312265, "_id": "yWlKpj1W5q", "elevation": -2391.517, "temperature": 84.62605367702508, "vertical_depth": 2416.517}, {"gradient": 7.028074482753196, "_id": "1Y85KPxYaR", "elevation": -2401.457, "temperature": 84.69591273738365, "vertical_depth": 2426.457}, {"gradient": 7.007902299357168, "_id": "8RxYzeaRe1", "elevation": -2411.398, "temperature": 84.76557829414156, "vertical_depth": 2436.398}, {"gradient": 7.007902299351771, "_id": "JXGgb36X54", "elevation": -2421.339, "temperature": 84.83524385089942, "vertical_depth": 2446.339}, {"gradient": 6.986404794169434, "_id": "D8jpJ3O84b", "elevation": -2431.28, "temperature": 84.90469570095826, "vertical_depth": 2456.28}, {"gradient": 6.9864047941697525, "_id": "Y0XBYKe03l", "elevation": -2441.221, "temperature": 84.9741475510171, "vertical_depth": 2466.221}, {"gradient": 6.963876422665163, "_id": "OQJlorxQeZ", "elevation": -2451.162, "temperature": 85.04337544653481, "vertical_depth": 2476.162}, {"gradient": 6.963876422670563, "_id": "v6Lg3kwleN", "elevation": -2461.103, "temperature": 85.11260334205258, "vertical_depth": 2486.103}, {"gradient": 6.940752985329898, "_id": "QxdYoDnxW6", "elevation": -2471.044, "temperature": 85.18160136747974, "vertical_depth": 2496.044}, {"gradient": 6.940752985335299, "_id": "7Qv2DloQG4", "elevation": -2480.985, "temperature": 85.25059939290696, "vertical_depth": 2505.985}, {"gradient": 6.912635992162446, "_id": "Ql1579qlzW", "elevation": -2490.926, "temperature": 85.31931790730505, "vertical_depth": 2515.926}, {"gradient": 6.912635992156412, "_id": "LxLVl9yxv6", "elevation": -2500.867, "temperature": 85.38803642170308, "vertical_depth": 2525.867}, {"gradient": 6.841937744500524, "_id": "dPxD685PNr", "elevation": -2510.808, "temperature": 85.45605212482116, "vertical_depth": 2535.808}, {"gradient": 6.842626068217101, "_id": "azR2qmGzo0", "elevation": -2520.748, "temperature": 85.52406782793923, "vertical_depth": 2545.748}, {"gradient": 6.780410404098351, "_id": "Meyxkd3eOd", "elevation": -2530.689, "temperature": 85.59147188776637, "vertical_depth": 2555.689}, {"gradient": 6.78041040409804, "_id": "xprM7qLp5B", "elevation": -2540.63, "temperature": 85.65887594759351, "vertical_depth": 2565.63}, {"gradient": 6.735600259750949, "_id": "B8DXkgw8V1", "elevation": -2550.571, "temperature": 85.7258345497757, "vertical_depth": 2575.571}, {"gradient": 6.73560025975064, "_id": "v9PyGD29rB", "elevation": -2560.512, "temperature": 85.79279315195788, "vertical_depth": 2585.512}, {"gradient": 6.700040762566673, "_id": "VX0JQnyXMz", "elevation": -2570.453, "temperature": 85.85939825717855, "vertical_depth": 2595.453}, {"gradient": 6.700040762566673, "_id": "pgdnZ6xgzL", "elevation": -2580.394, "temperature": 85.92600336239923, "vertical_depth": 2605.394}, {"gradient": 6.669613345492535, "_id": "33OkB4Y3Gv", "elevation": -2590.335, "temperature": 85.99230598866677, "vertical_depth": 2615.335}, {"gradient": 6.6696133454871225, "_id": "GYdr3oxYln", "elevation": -2600.276, "temperature": 86.05860861493426, "vertical_depth": 2625.276}, {"gradient": 6.6420146377125535, "_id": "2pEJ47np5b", "elevation": -2610.217, "temperature": 86.12463688244776, "vertical_depth": 2635.217}, {"gradient": 6.642014637712858, "_id": "er3vMZ7rmq", "elevation": -2620.158, "temperature": 86.19066514996126, "vertical_depth": 2645.158}, {"gradient": 6.6159638316077425, "_id": "vxDveZWxA1", "elevation": -2630.099, "temperature": 86.25643444641128, "vertical_depth": 2655.099}, {"gradient": 6.6166294215248564, "_id": "wmMgBDomNx", "elevation": -2640.039, "temperature": 86.32220374286123, "vertical_depth": 2665.039}, {"gradient": 6.58942507011383, "_id": "5Dnax0QDGv", "elevation": -2649.98, "temperature": 86.38770921748323, "vertical_depth": 2674.98}, {"gradient": 6.58942507011383, "_id": "0kVwaDek5Q", "elevation": -2659.921, "temperature": 86.45321469210523, "vertical_depth": 2684.921}, {"gradient": 6.527117288588729, "_id": "1obrOXM6Ve", "elevation": -2669.862, "temperature": 86.5181007650711, "vertical_depth": 2694.862}, {"gradient": 6.527117288589028, "_id": "m3vpJ9W3ao", "elevation": -2679.803, "temperature": 86.58298683803696, "vertical_depth": 2704.803}, {"gradient": 6.459207613083174, "_id": "XGEop6LGYj", "elevation": -2689.744, "temperature": 86.64719782091862, "vertical_depth": 2714.744}, {"gradient": 6.459207613083469, "_id": "pwQnRdWw3v", "elevation": -2699.685, "temperature": 86.71140880380028, "vertical_depth": 2724.685}, {"gradient": 6.410712365184847, "_id": "ELlAV7yLbz", "elevation": -2709.626, "temperature": 86.77513769542259, "vertical_depth": 2734.626}, {"gradient": 6.41071236518514, "_id": "By9WGd7yYV", "elevation": -2719.567, "temperature": 86.83886658704489, "vertical_depth": 2744.567}, {"gradient": 6.3729861632871305, "_id": "gAVDQGJAbA", "elevation": -2729.508, "temperature": 86.90222044249413, "vertical_depth": 2754.508}, {"gradient": 6.372986163286838, "_id": "jdrj7QZdWJ", "elevation": -2739.449, "temperature": 86.96557429794336, "vertical_depth": 2764.449}, {"gradient": 6.341205827545792, "_id": "kpMnPavODG", "elevation": -2749.39, "temperature": 87.028612225075, "vertical_depth": 2774.39}, {"gradient": 6.341843775818021, "_id": "4voQWxavBj", "elevation": -2759.33, "temperature": 87.09165015220663, "vertical_depth": 2784.33}, {"gradient": 6.3130084569432245, "_id": "oP0klKQP5r", "elevation": -2769.271, "temperature": 87.1544077692771, "vertical_depth": 2794.271}, {"gradient": 6.313008456949231, "_id": "K45awZ34AE", "elevation": -2779.212, "temperature": 87.21716538634763, "vertical_depth": 2804.212}, {"gradient": 6.286492329399674, "_id": "4oYwe4KoO3", "elevation": -2789.153, "temperature": 87.27965940659419, "vertical_depth": 2814.153}, {"gradient": 6.286492329405104, "_id": "7QYLdK5Zd5", "elevation": -2799.094, "temperature": 87.34215342684081, "vertical_depth": 2824.094}, {"gradient": 6.260745403420342, "_id": "6vVGewBvBJ", "elevation": -2809.035, "temperature": 87.40439149689621, "vertical_depth": 2834.035}, {"gradient": 6.260745403431491, "_id": "bNmrW70NWV", "elevation": -2818.976, "temperature": 87.46662956695172, "vertical_depth": 2843.976}, {"gradient": -30.474881399441507, "_id": "5vXgy1dvyg", "elevation": -2819.076, "temperature": 87.46358207881178, "vertical_depth": 2844.076}, {"gradient": -5.8988120957846135, "_id": "aLx3o0mLmA", "elevation": -2819.176, "temperature": 87.4629921976022, "vertical_depth": 2844.176}, {"gradient": -17.930047945489328, "_id": "5WLlQVJWQz", "elevation": -2828.53, "temperature": 87.29527452912009, "vertical_depth": 2853.53}, {"gradient": -17.931964982579082, "_id": "wkw6loRkEJ", "elevation": -2837.883, "temperature": 87.12755686063804, "vertical_depth": 2862.883}, {"gradient": -10.184078818107043, "_id": "rxRgvzrOvO", "elevation": -2847.237, "temperature": 87.03229498737346, "vertical_depth": 2872.237}, {"gradient": -10.184078818101462, "_id": "5edE9NGegl", "elevation": -2856.591, "temperature": 86.93703311410894, "vertical_depth": 2881.591}, {"gradient": -5.150036175237564, "_id": "2x0rV5zx3w", "elevation": -2865.945, "temperature": 86.88885967572577, "vertical_depth": 2890.945}, {"gradient": -5.1500361752378145, "_id": "jAqWdaNAKn", "elevation": -2875.299, "temperature": 86.8406862373426, "vertical_depth": 2900.299}, {"gradient": 61.51046559756333, "_id": "DAxJDYeAEA", "elevation": -2875.399, "temperature": 86.84683728390235, "vertical_depth": 2900.399}, {"gradient": -11.080580728517504, "_id": "6AEkd0xApp", "elevation": -2875.498, "temperature": 86.84574030641022, "vertical_depth": 2900.498}, {"gradient": 25.83807244423391, "_id": "YWV39MgWRO", "elevation": -2883.604, "temperature": 87.05518372164317, "vertical_depth": 2908.604}, {"gradient": 25.838072444239476, "_id": "2zwaGpKz0W", "elevation": -2891.71, "temperature": 87.26462713687619, "vertical_depth": 2916.71}, {"gradient": 18.32527350059073, "_id": "BBEo4A3Bva", "elevation": -2899.815, "temperature": 87.41315347859847, "vertical_depth": 2924.815}, {"gradient": 18.32301279574296, "_id": "NMo1w0dJB6", "elevation": -2907.921, "temperature": 87.56167982032076, "vertical_depth": 2932.921}, {"gradient": 13.663158596098542, "_id": "rawVR9evjD", "elevation": -2916.026, "temperature": 87.67241972074214, "vertical_depth": 2941.026}, {"gradient": 13.66147303497281, "_id": "Rr6wWEXkeM", "elevation": -2924.132, "temperature": 87.78315962116363, "vertical_depth": 2949.132}, {"gradient": -44.305639100952526, "_id": "OJvDmgwQoo", "elevation": -2924.232, "temperature": 87.77872905725354, "vertical_depth": 2949.232}, {"gradient": 19.337102038759472, "_id": "DkVB1jml0l", "elevation": -2924.331, "temperature": 87.78064343035538, "vertical_depth": 2949.331}, {"gradient": -13.848535451100805, "_id": "YYzo05OD8E", "elevation": -2932.568, "temperature": 87.66657304384466, "vertical_depth": 2957.568}, {"gradient": -13.84853545110157, "_id": "9ORgPLDYK1", "elevation": -2940.805, "temperature": 87.55250265733395, "vertical_depth": 2965.805}, {"gradient": -8.186978602151058, "_id": "Ap2V8KWONg", "elevation": -2949.042, "temperature": 87.48506651458803, "vertical_depth": 2974.042}, {"gradient": -8.185984795571326, "_id": "kwpe7O0yee", "elevation": -2957.28, "temperature": 87.41763037184211, "vertical_depth": 2982.28}, {"gradient": -4.354593205380622, "_id": "LaA1Z4We1e", "elevation": -2965.517, "temperature": 87.38176158760939, "vertical_depth": 2990.517}, {"gradient": -4.35459320536658, "_id": "YgeWK0EmNn", "elevation": -2973.754, "temperature": 87.34589280337678, "vertical_depth": 2998.754}, {"gradient": 11.094615078933217, "_id": "WKxgB9n4po", "elevation": -2976.355, "temperature": 87.37474989719709, "vertical_depth": 3001.355}, {"gradient": 11.094615078955071, "_id": "505jK2A49L", "elevation": -2978.956, "temperature": 87.40360699101745, "vertical_depth": 3003.956}, {"gradient": -3347.791319173641, "_id": "xbRz3oBagW", "elevation": -2979.056, "temperature": 87.0688278591004, "vertical_depth": 3004.056}, {"gradient": -12.987850219599737, "_id": "VAyJgVKpXv", "elevation": -2979.156, "temperature": 87.06752907407844, "vertical_depth": 3004.156}, {"gradient": -13.0054542331825, "_id": "3AEd5Y2DGB", "elevation": -2987.456, "temperature": 86.95958380394302, "vertical_depth": 3012.456}, {"gradient": -13.005454233183212, "_id": "mR0Ak14Leg", "elevation": -2995.756, "temperature": 86.8516385338076, "vertical_depth": 3020.756}, {"gradient": -13.0054542331825, "_id": "lJdRgwN7Yz", "elevation": -3004.056, "temperature": 86.74369326367218, "vertical_depth": 3029.056}, {"gradient": -12.895290724961596, "_id": "a6Ozbje0OQ", "elevation": -3012.356, "temperature": 86.636662350655, "vertical_depth": 3037.356}, {"gradient": 5.9187565598219, "_id": "X3bJemylzo", "elevation": -3020.655, "temperature": 86.68578211134496, "vertical_depth": 3045.655}, {"gradient": 5.90081929338671, "_id": "YbOZDrJKEw", "elevation": -3028.955, "temperature": 86.73475891148007, "vertical_depth": 3053.955}, {"gradient": 8.193409942985998, "_id": "3gdynkNR69", "elevation": -3037.255, "temperature": 86.80276421400686, "vertical_depth": 3062.255}, {"gradient": 11.092593992745412, "_id": "jzj4by9g79", "elevation": -3045.555, "temperature": 86.89483274414664, "vertical_depth": 3070.555}, {"gradient": 17254.825098740734, "_id": "YGxy3OnWGO", "elevation": -3045.655, "temperature": 88.62031525402699, "vertical_depth": 3070.655}, {"gradient": 11.077579200683502, "_id": "9ny4Eg3oVY", "elevation": -3045.755, "temperature": 88.62142301194706, "vertical_depth": 3070.755}, {"gradient": 11.092766042685739, "_id": "3jbOnma0YQ", "elevation": -3055.689, "temperature": 88.7316185498151, "vertical_depth": 3080.689}, {"gradient": 11.09276604268523, "_id": "QdoqElJ7ln", "elevation": -3065.623, "temperature": 88.84181408768313, "vertical_depth": 3090.623}, {"gradient": 11.092766042668572, "_id": "lodQ8wWzwE", "elevation": -3075.557, "temperature": 88.952009625551, "vertical_depth": 3100.557}, {"gradient": 11.092766042679509, "_id": "ANwmgYDVOp", "elevation": -3085.491, "temperature": 89.06220516341898, "vertical_depth": 3110.491}, {"gradient": 4.114847532853113, "_id": "bZ6Erbanb1", "elevation": -3095.425, "temperature": 89.10308205881034, "vertical_depth": 3120.425}, {"gradient": 5.870532973503431, "_id": "q85apDzNDe", "elevation": -3105.359, "temperature": 89.16139993336913, "vertical_depth": 3130.359}, {"gradient": 5.847135574134016, "_id": "w078ROkmXo", "elevation": -3115.293, "temperature": 89.21948537816257, "vertical_depth": 3140.293}, {"gradient": 4.085368005186696, "_id": "EvzOV8nkXE", "elevation": -3125.227, "temperature": 89.2600694239261, "vertical_depth": 3150.227}, {"gradient": 4.055819600330962, "_id": "o9aj15pGrN", "elevation": -3135.161, "temperature": 89.30035993583579, "vertical_depth": 3160.161}, {"gradient": 5.823769981330213, "_id": "KKjkAevMXg", "elevation": -3145.095, "temperature": 89.35821326683032, "vertical_depth": 3170.095}, {"gradient": 4.026174157596709, "_id": "VYRvVMrOw0", "elevation": -3155.029, "temperature": 89.39820928091189, "vertical_depth": 3180.029}, {"gradient": 5.799886893158869, "_id": "57EXykPplz", "elevation": -3164.963, "temperature": 89.45582535730853, "vertical_depth": 3189.963}, {"gradient": 3.9964575540663043, "_id": "wab6XyPdw2", "elevation": -3174.897, "temperature": 89.49552616665062, "vertical_depth": 3199.897}, {"gradient": 5.775982565216023, "_id": "zZ8d0rm1YR", "elevation": -3184.831, "temperature": 89.55290477745348, "vertical_depth": 3209.831}, {"gradient": 3.966669834251657, "_id": "wx3Q0zWMbv", "elevation": -3194.765, "temperature": 89.59230967558693, "vertical_depth": 3219.765}, {"gradient": 5.752058151410222, "_id": "RjKrYNwADY", "elevation": -3204.699, "temperature": 89.64945062126304, "vertical_depth": 3229.699}, {"gradient": 5.728114636493592, "_id": "nygrovVJpo", "elevation": -3214.633, "temperature": 89.70635371206197, "vertical_depth": 3239.633}, {"gradient": 3.936810992894154, "_id": "475KEP6ZXN", "elevation": -3224.567, "temperature": 89.74546199246538, "vertical_depth": 3249.567}, {"gradient": 3.8620508685877293, "_id": "WaqwYA5rDP", "elevation": -3234.501, "temperature": 89.78382760579393, "vertical_depth": 3259.501}, {"gradient": 5.662938033473624, "_id": "Zm1PZk2nq5", "elevation": -3244.434, "temperature": 89.84007756928042, "vertical_depth": 3269.434}, {"gradient": 5.554154121679572, "_id": "7O4kxPJ1g3", "elevation": -3254.368, "temperature": 89.89525253632519, "vertical_depth": 3279.368}, {"gradient": 3.74442900057448, "_id": "vWdM4kQm7A", "elevation": -3264.302, "temperature": 89.9324496940169, "vertical_depth": 3289.302}, {"gradient": 5.530746445856867, "_id": "eOxkNVoZAL", "elevation": -3274.236, "temperature": 89.98739212921004, "vertical_depth": 3299.236}, {"gradient": 3.714504465191005, "_id": "VYxrz17dNN", "elevation": -3284.17, "temperature": 90.02429201656724, "vertical_depth": 3309.17}, {"gradient": 5.507337384740473, "_id": "5KmrvBXejx", "elevation": -3294.104, "temperature": 90.07900190614725, "vertical_depth": 3319.104}, {"gradient": 3.684505046402414, "_id": "1gVBx6EvXD", "elevation": -3304.038, "temperature": 90.11560377927822, "vertical_depth": 3329.038}, {"gradient": 5.482845923664578, "_id": "kkqK2vYG7G", "elevation": -3313.972, "temperature": 90.1700703706839, "vertical_depth": 3338.972}, {"gradient": 3.654379299850493, "_id": "J1K3B2oYwQ", "elevation": -3323.906, "temperature": 90.20637297464862, "vertical_depth": 3348.906}, {"gradient": 3.6242326539518275, "_id": "w4YEbnyZAx", "elevation": -3333.84, "temperature": 90.24237610183297, "vertical_depth": 3358.84}, {"gradient": 5.4590280233079165, "_id": "g29R6XgeEy", "elevation": -3343.774, "temperature": 90.29660608621651, "vertical_depth": 3368.774}, {"gradient": 3.5940170943287257, "_id": "alo5JqzYPj", "elevation": -3353.708, "temperature": 90.33230905203158, "vertical_depth": 3378.708}, {"gradient": 5.435202111319156, "_id": "wZkjaePrDv", "elevation": -3363.642, "temperature": 90.38630234980542, "vertical_depth": 3388.642}, {"gradient": 5.377749474318103, "_id": "oA6pzd1vVy", "elevation": -3373.576, "temperature": 90.4397249130833, "vertical_depth": 3398.576}, {"gradient": 3.5273686031765266, "_id": "le1Lm9wzaO", "elevation": -3383.51, "temperature": 90.47476579278725, "vertical_depth": 3408.51}, {"gradient": 3.441771704769363, "_id": "AVN5qJxAb3", "elevation": -3393.444, "temperature": 90.50895635290243, "vertical_depth": 3418.444}, {"gradient": 5.302858443125694, "_id": "KJnK1Zql0J", "elevation": -3403.378, "temperature": 90.56163494867644, "vertical_depth": 3428.378}, {"gradient": 5.279430993152098, "_id": "zw328n61eJ", "elevation": -3413.312, "temperature": 90.61408081616241, "vertical_depth": 3438.312}, {"gradient": 3.41156991811652, "_id": "Yp4QAKyPlM", "elevation": -3423.246, "temperature": 90.64797135172898, "vertical_depth": 3448.246}, {"gradient": 3.3814411252460035, "_id": "yw7mkZLXKq", "elevation": -3433.18, "temperature": 90.68156258786718, "vertical_depth": 3458.18}, {"gradient": 5.257200565705558, "_id": "00ydMYJKZa", "elevation": -3443.114, "temperature": 90.7337876182869, "vertical_depth": 3468.114}, {"gradient": 3.351082479402133, "_id": "ybj7NZe5ew", "elevation": -3453.048, "temperature": 90.76707727163728, "vertical_depth": 3478.048}, {"gradient": 5.233921079769002, "_id": "VEN3RyBkBk", "elevation": -3462.982, "temperature": 90.8190710436437, "vertical_depth": 3487.982}, {"gradient": -8535.776754261893, "_id": "APNEp4AXA4", "elevation": -3463.082, "temperature": 89.96549336821829, "vertical_depth": 3488.082}, {"gradient": -1570.2744593014088, "_id": "yY5bjQOzNd", "elevation": -3463.182, "temperature": 89.80846592228829, "vertical_depth": 3488.182}, {"gradient": 7.131482259878667, "_id": "6PVb72LyYa", "elevation": -3473.132, "temperature": 89.87942417077409, "vertical_depth": 3498.132}, {"gradient": 4.80428996701481, "_id": "556z2gA822", "elevation": -3483.081, "temperature": 89.92722205165592, "vertical_depth": 3508.081}, {"gradient": 4.7628193650513815, "_id": "jdRXYNB9vM", "elevation": -3493.031, "temperature": 89.97461210433818, "vertical_depth": 3518.031}, {"gradient": 7.1003522937564805, "_id": "NLxrP7DQ9m", "elevation": -3502.981, "temperature": 90.04526060966106, "vertical_depth": 3527.981}, {"gradient": 7.068347368006294, "_id": "kbXAG0ljY3", "elevation": -3512.931, "temperature": 90.11559066597272, "vertical_depth": 3537.931}, {"gradient": 4.7221257719534515, "_id": "PJrPkQ0dBA", "elevation": -3522.88, "temperature": 90.16257109527788, "vertical_depth": 3547.88}, {"gradient": 4.681046109237132, "_id": "03gNWwq9VE", "elevation": -3532.828, "temperature": 90.20913814197257, "vertical_depth": 3557.828}, {"gradient": 7.037064923067333, "_id": "1lK7J9ApdA", "elevation": -3542.776, "temperature": 90.27914286382725, "vertical_depth": 3567.776}, {"gradient": 7.00447767187689, "_id": "m8dw57LWjx", "elevation": -3552.718, "temperature": 90.34878138084105, "vertical_depth": 3577.718}, {"gradient": 4.643927421690552, "_id": "BVq9yK8N0a", "elevation": -3562.654, "temperature": 90.39492344370296, "vertical_depth": 3587.654}, {"gradient": 4.604575286167108, "_id": "157vleJbdB", "elevation": -3572.579, "temperature": 90.44062385341817, "vertical_depth": 3597.579}, {"gradient": 6.979453653018635, "_id": "xL7oM2l2xP", "elevation": -3582.495, "temperature": 90.5098321158415, "vertical_depth": 3607.495}, {"gradient": 6.947039932941403, "_id": "GQveAJZJG1", "elevation": -3592.398, "temperature": 90.57862865229743, "vertical_depth": 3617.398}, {"gradient": 4.575746484342639, "_id": "yWQDEBVB3b", "elevation": -3602.287, "temperature": 90.62387820928109, "vertical_depth": 3627.287}, {"gradient": 6.922785611746066, "_id": "oZQoBqPKg9", "elevation": -3612.162, "temperature": 90.69224071719708, "vertical_depth": 3637.162}, {"gradient": 4.543061373695319, "_id": "KkBZYKMg7Y", "elevation": -3622.021, "temperature": 90.73703075928034, "vertical_depth": 3647.021}, {"gradient": 4.503760715272291, "_id": "xz5R7pOpAV", "elevation": -3631.862, "temperature": 90.78135226847934, "vertical_depth": 3656.862}, {"gradient": 6.911684680697115, "_id": "EOVYXG9no8", "elevation": -3641.685, "temperature": 90.84924574709783, "vertical_depth": 3666.685}, {"gradient": 4.472549296911291, "_id": "dnjA4R3Pa9", "elevation": -3651.488, "temperature": 90.89309014785545, "vertical_depth": 3676.488}, {"gradient": 6.889640606044007, "_id": "ejexq373ob", "elevation": -3661.27, "temperature": 90.96048461226377, "vertical_depth": 3686.27}, {"gradient": 6.853035022093012, "_id": "v5Vmk0y0mr", "elevation": -3671.03, "temperature": 91.0273702340794, "vertical_depth": 3696.03}, {"gradient": 4.4540646844930265, "_id": "db6pVzKzlK", "elevation": -3680.765, "temperature": 91.07073055378294, "vertical_depth": 3705.765}, {"gradient": 6.833668288183767, "_id": "D6Jry5G5r9", "elevation": -3690.475, "temperature": 91.1370854728612, "vertical_depth": 3715.475}, {"gradient": 4.427210290873824, "_id": "107Xy2821p", "elevation": -3700.158, "temperature": 91.17995415010773, "vertical_depth": 3725.158}, {"gradient": 4.387942333375092, "_id": "XVrQOmWmZZ", "elevation": -3709.814, "temperature": 91.2223241212788, "vertical_depth": 3734.814}, {"gradient": 6.836460684510512, "_id": "3oD5w6k6L1", "elevation": -3719.44, "temperature": 91.2881318918279, "vertical_depth": 3744.44}, {"gradient": 6.80004757638918, "_id": "V4mJQZgZvm", "elevation": -3729.036, "temperature": 91.35338514837093, "vertical_depth": 3754.036}, {"gradient": 4.377423037560384, "_id": "AO3Kp1r1XJ", "elevation": -3738.6, "temperature": 91.39525082230216, "vertical_depth": 3763.6}, {"gradient": 4.338624506903375, "_id": "9j743AEAVW", "elevation": -3748.132, "temperature": 91.43660659110196, "vertical_depth": 3773.132}, {"gradient": 6.807978403328253, "_id": "m6lexQBQl3", "elevation": -3757.63, "temperature": 91.50126876997678, "vertical_depth": 3782.63}, {"gradient": 6.7667841069180446, "_id": "k4PRrXmXVe", "elevation": -3767.091, "temperature": 91.56528931441233, "vertical_depth": 3792.091}, {"gradient": 4.332799932826132, "_id": "OLbw9xrxq4", "elevation": -3776.516, "temperature": 91.60612595377921, "vertical_depth": 3801.516}, {"gradient": 6.754781002056018, "_id": "7QVqA2D2xe", "elevation": -3785.902, "temperature": 91.66952632826451, "vertical_depth": 3810.902}, {"gradient": 4.312580958920231, "_id": "9QkylWNWKb", "elevation": -3795.249, "temperature": 91.70983602248754, "vertical_depth": 3820.249}, {"gradient": 6.712760665455534, "_id": "yRQx34PjVZ", "elevation": -3804.556, "temperature": 91.77231168600093, "vertical_depth": 3829.556}, {"gradient": 4.256027786740311, "_id": "O67KJ3L3Yj", "elevation": -3813.821, "temperature": 91.81174378344508, "vertical_depth": 3838.821}, {"gradient": 4.16567415366813, "_id": "lW7kp2wgAd", "elevation": -3823.042, "temperature": 91.85015546481605, "vertical_depth": 3848.042}, {"gradient": 6.679525254309834, "_id": "m7xe8dPd7e", "elevation": -3832.22, "temperature": 91.91146014760011, "vertical_depth": 3857.22}, {"gradient": 4.019243841340686, "_id": "pYjw5KpKJa", "elevation": -3841.351, "temperature": 91.9481598631154, "vertical_depth": 3866.351}, {"gradient": 6.541109457833554, "_id": "BYp3Zj7OQl", "elevation": -3850.436, "temperature": 92.00758584253981, "vertical_depth": 3875.436}, {"gradient": 6.498554725115734, "_id": "ogBxz737eB", "elevation": -3859.473, "temperature": 92.06631328159068, "vertical_depth": 3884.473}, {"gradient": 4.024450099933529, "_id": "EGK2EydyyA", "elevation": -3868.46, "temperature": 92.10248101463878, "vertical_depth": 3893.46}, {"gradient": 6.490824574225449, "_id": "x0LO6j2j09", "elevation": -3877.397, "temperature": 92.16048951385864, "vertical_depth": 3902.397}, {"gradient": 4.010260173091969, "_id": "ApP28k9kAl", "elevation": -3886.282, "temperature": 92.19612067549656, "vertical_depth": 3911.282}, {"gradient": 3.971781915386773, "_id": "e1z4daAa9y", "elevation": -3895.136, "temperature": 92.23128683257539, "vertical_depth": 3920.136}, {"gradient": 6.49222613308249, "_id": "w495QBeBRQ", "elevation": -3903.99, "temperature": 92.2887690027577, "vertical_depth": 3928.99}, {"gradient": 6.460575451392942, "_id": "a2wGg8rb8L", "elevation": -3912.844, "temperature": 92.34597093780434, "vertical_depth": 3937.844}, {"gradient": 3.929502187051001, "_id": "pA2q38v8RO", "elevation": -3921.697, "temperature": 92.3807588206663, "vertical_depth": 3946.697}, {"gradient": 3.8863231087401733, "_id": "djnex4D4Pm", "elevation": -3930.551, "temperature": 92.41516832547109, "vertical_depth": 3955.551}, {"gradient": 6.429787390040952, "_id": "nwYLNzvBz0", "elevation": -3939.404, "temperature": 92.47209123323512, "vertical_depth": 3964.404}, {"gradient": 6.3954561141978745, "_id": "qq6Bnj1Vjd", "elevation": -3948.258, "temperature": 92.52871660167023, "vertical_depth": 3973.258}, {"gradient": 3.8435447779735488, "_id": "a5N64jvjlz", "elevation": -3957.112, "temperature": 92.5627473471344, "vertical_depth": 3982.112}, {"gradient": 3.8011083275577997, "_id": "BZBk94Vw44", "elevation": -3965.965, "temperature": 92.59639855915827, "vertical_depth": 3990.965}, {"gradient": 6.363998654890456, "_id": "Z8pBMn7nRg", "elevation": -3974.819, "temperature": 92.65274540324867, "vertical_depth": 3999.819}, {"gradient": 3.7576113027975815, "_id": "WzDgjbwb2y", "elevation": -3983.673, "temperature": 92.68601529372364, "vertical_depth": 4008.673}, {"gradient": 6.333306039404473, "_id": "RpB7jvkvAl", "elevation": -3992.526, "temperature": 92.74208405209049, "vertical_depth": 4017.526}, {"gradient": 3.7144382417580495, "_id": "pvnm5lalME", "elevation": -4001.38, "temperature": 92.77497168828302, "vertical_depth": 4026.38}, {"gradient": 6.301210251647048, "_id": "M3rDA0a0we", "elevation": -4010.234, "temperature": 92.8307626038511, "vertical_depth": 4035.234}, {"gradient": 3.6715745783180904, "_id": "9Le5PajawR", "elevation": -4019.087, "temperature": 92.86326705359295, "vertical_depth": 4044.087}, {"gradient": 6.269861924359268, "_id": "1RjkAaelaw", "elevation": -4027.941, "temperature": 92.91878041107122, "vertical_depth": 4052.941}, {"gradient": 6.238341940077361, "_id": "eKjorLvLBe", "elevation": -4036.794, "temperature": 92.97400845226673, "vertical_depth": 4061.794}, {"gradient": 3.627719985577107, "_id": "6xnp1vlv72", "elevation": -4045.648, "temperature": 93.00612828501903, "vertical_depth": 4070.648}, {"gradient": 6.2060365137789955, "_id": "ZrZzjg4gWy", "elevation": -4054.502, "temperature": 93.06107653231203, "vertical_depth": 4079.502}, {"gradient": 3.584622229376351, "_id": "mly7mavanW", "elevation": -4063.355, "temperature": 93.0928111929087, "vertical_depth": 4088.355}, {"gradient": 3.540650844152438, "_id": "X3ONjQ4Q9v", "elevation": -4072.209, "temperature": 93.12416011548282, "vertical_depth": 4097.209}, {"gradient": 6.175285190596563, "_id": "ZNxW0ZVZJZ", "elevation": -4081.063, "temperature": 93.17883609056037, "vertical_depth": 4106.063}, {"gradient": 6.146002996933148, "_id": "NoVrKM9MEE", "elevation": -4089.916, "temperature": 93.23324665509222, "vertical_depth": 4114.916}, {"gradient": 3.4970049785647, "_id": "r8OWpQAQwV", "elevation": -4098.77, "temperature": 93.26420913717243, "vertical_depth": 4123.77}, {"gradient": 6.1148810753742255, "_id": "vP5px9oWk1", "elevation": -4107.623, "temperature": 93.31834417933271, "vertical_depth": 4132.623}, {"gradient": 3.453204821345794, "_id": "78wKLZ4ZpP", "elevation": -4116.477, "temperature": 93.34891885482091, "vertical_depth": 4141.477}, {"gradient": 3.4094315910226087, "_id": "RGoLXq7qDO", "elevation": -4125.331, "temperature": 93.37910596212782, "vertical_depth": 4150.331}, {"gradient": 6.084769364909165, "_id": "B2dXma0aNk", "elevation": -4134.184, "temperature": 93.43297442531536, "vertical_depth": 4159.184}, {"gradient": 6.053071602702386, "_id": "Gq1659j9gE", "elevation": -4143.038, "temperature": 93.48656832128569, "vertical_depth": 4168.038}, {"gradient": 3.3656062695483135, "_id": "XG79eWYWV4", "elevation": -4151.892, "temperature": 93.51636739919627, "vertical_depth": 4176.892}, {"gradient": 6.020628308188564, "_id": "lgw1JpEpqe", "elevation": -4160.745, "temperature": 93.56966802160866, "vertical_depth": 4185.745}, {"gradient": 3.3214969828973686, "_id": "N8NBoYrLwB", "elevation": -4169.599, "temperature": 93.59907655589524, "vertical_depth": 4194.599}, {"gradient": 3.27723969516692, "_id": "dXPYqjGjye", "elevation": -4178.453, "temperature": 93.62809323615625, "vertical_depth": 4203.453}, {"gradient": 5.989751241906866, "_id": "lBZ3PNDN8A", "elevation": -4187.306, "temperature": 93.68112050390084, "vertical_depth": 4212.306}, {"gradient": 3.232906368141438, "_id": "KbdlDBQBQZ", "elevation": -4196.16, "temperature": 93.70974465688437, "vertical_depth": 4221.16}, {"gradient": 5.959642657913325, "_id": "KD647qRqWg", "elevation": -4205.013, "temperature": 93.76250537333488, "vertical_depth": 4230.013}, {"gradient": 3.183901643503325, "_id": "33816yayRG", "elevation": -4213.867, "temperature": 93.79069563848645, "vertical_depth": 4238.867}, {"gradient": 5.925115059691068, "_id": "b3nOoD9D7w", "elevation": -4222.721, "temperature": 93.84315660722496, "vertical_depth": 4247.721}, {"gradient": 5.831086651196981, "_id": "Ldrm5pNpyD", "elevation": -4231.574, "temperature": 93.894779217348, "vertical_depth": 4256.574}, {"gradient": 3.0671526424166315, "_id": "zLm3XvqvXQ", "elevation": -4240.428, "temperature": 93.92193578684396, "vertical_depth": 4265.428}, {"gradient": 3.0225612661589407, "_id": "E6n2G0w0w7", "elevation": -4249.282, "temperature": 93.94869754429453, "vertical_depth": 4274.282}, {"gradient": 5.800463668537642, "_id": "dWRzk7j7k2", "elevation": -4258.135, "temperature": 94.0000490491521, "vertical_depth": 4283.135}, {"gradient": 5.769493105399821, "_id": "oRy6ZzVzZe", "elevation": -4266.989, "temperature": 94.0511321411073, "vertical_depth": 4291.989}, {"gradient": 2.978197803594621, "_id": "OVZDQLML3j", "elevation": -4275.842, "temperature": 94.07749812626253, "vertical_depth": 4300.842}, {"gradient": 5.739284568531867, "_id": "2negYwaw5x", "elevation": -4284.696, "temperature": 94.12831375183231, "vertical_depth": 4309.696}, {"gradient": 2.933058906230866, "_id": "g839nQkQL0", "elevation": -4293.55, "temperature": 94.15428305538808, "vertical_depth": 4318.55}, {"gradient": 2.888480205697177, "_id": "oP6zJZLrXy", "elevation": -4302.403, "temperature": 94.17985477064911, "vertical_depth": 4327.403}, {"gradient": 5.709190059967791, "_id": "ddPQ5RER16", "elevation": -4311.257, "temperature": 94.23040393944007, "vertical_depth": 4336.257}, {"gradient": 2.8431794637414445, "_id": "NkpzqNyNoZ", "elevation": -4320.111, "temperature": 94.25557745041203, "vertical_depth": 4345.111}, {"gradient": 5.680728930282146, "_id": "jLgN823jXo", "elevation": -4328.964, "temperature": 94.30586894363182, "vertical_depth": 4353.964}, {"gradient": 5.650884892553313, "_id": "DXDKRAaA3b", "elevation": -4337.818, "temperature": 94.35590187847049, "vertical_depth": 4362.818}, {"gradient": 2.798090390526028, "_id": "jgqZa9B9Ok", "elevation": -4346.672, "temperature": 94.3806761707882, "vertical_depth": 4371.672}, {"gradient": 2.7532432317822084, "_id": "eaOPgZVZ9n", "elevation": -4355.525, "temperature": 94.40505063311917, "vertical_depth": 4380.525}, {"gradient": 5.618413637136515, "_id": "22gvej1jx7", "elevation": -4364.379, "temperature": 94.45479606746238, "vertical_depth": 4389.379}, {"gradient": 5.589335856381975, "_id": "o8azRXdXYb", "elevation": -4373.232, "temperature": 94.50427845779893, "vertical_depth": 4398.232}, {"gradient": 2.7076129046860666, "_id": "OkNpz8g8aW", "elevation": -4382.086, "temperature": 94.52825166245702, "vertical_depth": 4407.086}, {"gradient": 2.662188030315513, "_id": "0kawX0ZlYw", "elevation": -4390.94, "temperature": 94.55182267527744, "vertical_depth": 4415.94}, {"gradient": 5.5599770331286065, "_id": "28pozBAd7L", "elevation": -4399.793, "temperature": 94.60104515195172, "vertical_depth": 4424.793}, {"gradient": 5.5301588997035775, "_id": "L6zlWPyjQ5", "elevation": -4408.647, "temperature": 94.6500091788497, "vertical_depth": 4433.647}, {"gradient": 2.616662994899982, "_id": "g9ayw5GK6e", "elevation": -4417.501, "temperature": 94.67317711300655, "vertical_depth": 4442.501}, {"gradient": 2.5713285508152515, "_id": "q5rNeXZMmo", "elevation": -4426.354, "temperature": 94.69594108466691, "vertical_depth": 4451.354}, {"gradient": 5.501145381845308, "_id": "7d1ZpoDy86", "elevation": -4435.208, "temperature": 94.74464822587777, "vertical_depth": 4460.208}, {"gradient": 5.474397839869329, "_id": "e9R241NBbX", "elevation": -4444.061, "temperature": 94.79311306995413, "vertical_depth": 4469.061}, {"gradient": 2.5253403551829487, "_id": "xWnrZjEdr1", "elevation": -4452.915, "temperature": 94.81547243345892, "vertical_depth": 4477.915}, {"gradient": 2.479491091532035, "_id": "5pAOL8nGO2", "elevation": -4461.769, "temperature": 94.83742584758335, "vertical_depth": 4486.769}, {"gradient": 5.447926495083391, "_id": "85zBVo2xw3", "elevation": -4470.622, "temperature": 94.88565634084432, "vertical_depth": 4495.622}, {"gradient": 2.3330490993183943, "_id": "Nz4moyeVYb", "elevation": -4479.476, "temperature": 94.90631315756968, "vertical_depth": 4504.476}, {"gradient": 5.325778461636836, "_id": "4VPWZp3DG1", "elevation": -4488.33, "temperature": 94.95346760006902, "vertical_depth": 4513.33}, {"gradient": 5.287795268729432, "_id": "x5oyZWMbd1", "elevation": -4497.183, "temperature": 95.00028045158308, "vertical_depth": 4522.183}, {"gradient": 2.279782050012192, "_id": "wyjDKxJrmR", "elevation": -4506.037, "temperature": 95.02046564185389, "vertical_depth": 4531.037}, {"gradient": 2.2340428555271465, "_id": "69ErXaQk2Y", "elevation": -4514.891, "temperature": 95.04024585729672, "vertical_depth": 4539.891}, {"gradient": 5.260478037431936, "_id": "ngymKk79oj", "elevation": -4523.744, "temperature": 95.08681686936211, "vertical_depth": 4548.744}, {"gradient": 2.1882103067301863, "_id": "6qW6lgJNMx", "elevation": -4532.598, "temperature": 95.1061912834179, "vertical_depth": 4557.598}, {"gradient": 5.233415801492979, "_id": "rWog83PAMO", "elevation": -4541.451, "temperature": 95.15252271350852, "vertical_depth": 4566.451}, {"gradient": 2.14235037521181, "_id": "n60qdQ8Xnq", "elevation": -4550.305, "temperature": 95.17149108373064, "vertical_depth": 4575.305}, {"gradient": 5.205827680388393, "_id": "8yAmjN4KoN", "elevation": -4559.159, "temperature": 95.2175834820128, "vertical_depth": 4584.159}, {"gradient": 5.180403268695505, "_id": "1aV9x1rGPm", "elevation": -4568.012, "temperature": 95.26344559215056, "vertical_depth": 4593.012}, {"gradient": 2.0965360706422804, "_id": "MOKqnPNero", "elevation": -4576.866, "temperature": 95.28200832252003, "vertical_depth": 4601.866}, {"gradient": 2.050400116007787, "_id": "dg3rEJBNNB", "elevation": -4585.72, "temperature": 95.30016256514716, "vertical_depth": 4610.72}, {"gradient": 5.1544409313568496, "_id": "6prAjxOgp0", "elevation": -4594.573, "temperature": 95.34579483071246, "vertical_depth": 4619.573}, {"gradient": 2.004164970204655, "_id": "bJx7az94z3", "elevation": -4603.427, "temperature": 95.36353970735865, "vertical_depth": 4628.427}, {"gradient": 5.1285534389574075, "_id": "9zP45Kvgz1", "elevation": -4612.28, "temperature": 95.40894279095374, "vertical_depth": 4637.28}, {"gradient": 5.102431478409928, "_id": "BevXqBQle4", "elevation": -4621.134, "temperature": 95.45411971926359, "vertical_depth": 4646.134}, {"gradient": 1.9578400565665532, "_id": "amQlk0NWqm", "elevation": -4629.988, "temperature": 95.47145443512443, "vertical_depth": 4654.988}, {"gradient": 1.8650066113235455, "_id": "l3ZwYE011m", "elevation": -4638.841, "temperature": 95.48796533865448, "vertical_depth": 4663.841}, {"gradient": 5.036072849336735, "_id": "OQNLZwmxxx", "elevation": -4647.695, "temperature": 95.5325547276625, "vertical_depth": 4672.695}, {"gradient": 4.990406472015232, "_id": "9ydmDpLNo3", "elevation": -4656.549, "temperature": 95.57673978656572, "vertical_depth": 4681.549}, {"gradient": 1.7946440780120128, "_id": "AxAl6DLeeR", "elevation": -4665.402, "temperature": 95.59262777058836, "vertical_depth": 4690.402}, {"gradient": 1.7478948896764028, "_id": "lP0J69OaRm", "elevation": -4674.256, "temperature": 95.60810363194156, "vertical_depth": 4699.256}, {"gradient": 4.966164031994662, "_id": "GY1p9y8Wo2", "elevation": -4683.11, "temperature": 95.65207404828084, "vertical_depth": 4708.11}, {"gradient": 1.701523701113944, "_id": "LblexRZqjj", "elevation": -4691.963, "temperature": 95.6671376376068, "vertical_depth": 4716.963}, {"gradient": 4.9445878459976536, "_id": "LMwNRQgV11", "elevation": -4700.817, "temperature": 95.71091701839526, "vertical_depth": 4725.817}, {"gradient": 4.921883930329018, "_id": "EedX06yg4z", "elevation": -4709.67, "temperature": 95.75449045683047, "vertical_depth": 4734.67}, {"gradient": 1.654604074161992, "_id": "dOm6WENn13", "elevation": -4718.524, "temperature": 95.7691403213031, "vertical_depth": 4743.524}, {"gradient": 1.6077841938030364, "_id": "GvLpR2BN57", "elevation": -4727.378, "temperature": 95.78337564255503, "vertical_depth": 4752.378}, {"gradient": 4.898955216118834, "_id": "qZ71XJQbWx", "elevation": -4736.231, "temperature": 95.82674609308333, "vertical_depth": 4761.231}, {"gradient": 4.8760037293308205, "_id": "Z3oLV6BXgD", "elevation": -4745.085, "temperature": 95.86991823010283, "vertical_depth": 4770.085}, {"gradient": 1.5608780466732994, "_id": "XaOmKDylqV", "elevation": -4753.939, "temperature": 95.88373824432807, "vertical_depth": 4778.939}, {"gradient": 7847.021787894034, "_id": "6VgQoMj9AB", "elevation": -4754.027, "temperature": 96.57427616166069, "vertical_depth": 4779.027}, {"gradient": 1098.9019968061864, "_id": "WnMdw9OXA5", "elevation": -4754.116, "temperature": 96.67207843937638, "vertical_depth": 4779.116}, {"gradient": 0.30883911104387696, "_id": "gZKl4mEWz4", "elevation": -4762.678, "temperature": 96.67472271984514, "vertical_depth": 4787.678}, {"gradient": 2.212006757402622, "_id": "KAGvegRd4Y", "elevation": -4771.24, "temperature": 96.69366192170202, "vertical_depth": 4796.24}, {"gradient": 2.2039946061321127, "_id": "yJE97N4B0D", "elevation": -4779.801, "temperature": 96.71253031952511, "vertical_depth": 4804.801}, {"gradient": 0.28754863689236976, "_id": "GwL5BXRe8A", "elevation": -4788.363, "temperature": 96.71499231095419, "vertical_depth": 4813.363}, {"gradient": 2.197244246973811, "_id": "ZepRnkPDGP", "elevation": -4796.925, "temperature": 96.73380511619678, "vertical_depth": 4821.925}, {"gradient": 0.26624060405468686, "_id": "2ZaG2ebwjr", "elevation": -4805.486, "temperature": 96.73608440200809, "vertical_depth": 4830.486}, {"gradient": 2.1912059980946834, "_id": "GZGB675NKY", "elevation": -4814.048, "temperature": 96.75484550776378, "vertical_depth": 4839.048}, {"gradient": 0.24483824874864146, "_id": "P0v6GJ9q4P", "elevation": -4822.61, "temperature": 96.75694181284956, "vertical_depth": 4847.61}, {"gradient": 0.22346101492739723, "_id": "K35wn4XKvy", "elevation": -4831.171, "temperature": 96.75885486259835, "vertical_depth": 4856.171}, {"gradient": 2.185654397701243, "_id": "qPDrYoMRAq", "elevation": -4839.733, "temperature": 96.77756843555147, "vertical_depth": 4864.733}, {"gradient": 2.180624526946452, "_id": "dkxPDlXB1O", "elevation": -4848.295, "temperature": 96.79623894275119, "vertical_depth": 4873.295}, {"gradient": 0.20202315721803923, "_id": "1pDLMadBky", "elevation": -4856.856, "temperature": 96.79796846300013, "vertical_depth": 4881.856}, {"gradient": 0.1805322323319115, "_id": "x8vn0kDw41", "elevation": -4865.418, "temperature": 96.79951417997336, "vertical_depth": 4890.418}, {"gradient": 2.1764092032873235, "_id": "y50J3168mG", "elevation": -4873.979, "temperature": 96.8181464191627, "vertical_depth": 4898.979}, {"gradient": -4.527978249831486, "_id": "B3JnEBYpZm", "elevation": -4882.541, "temperature": 96.77937786938764, "vertical_depth": 4907.541}, {"gradient": 0.23330038693865734, "_id": "k5LaNME8Gy", "elevation": -4891.103, "temperature": 96.78137538730061, "vertical_depth": 4916.103}, {"gradient": 0.12836070844349212, "_id": "N83BlGXKwX", "elevation": -4899.664, "temperature": 96.7824742833256, "vertical_depth": 4924.664}, {"gradient": 2.4199948875662645, "_id": "o1NQAo8Yrk", "elevation": -4908.226, "temperature": 96.80319427955294, "vertical_depth": 4933.226}, {"gradient": 0.10701432608436633, "_id": "yA9dv3w5ya", "elevation": -4916.788, "temperature": 96.80411053621287, "vertical_depth": 4941.788}, {"gradient": 2.4176526508087264, "_id": "zY8xKbEmZP", "elevation": -4925.349, "temperature": 96.82480806055645, "vertical_depth": 4950.349}, {"gradient": 2.415466921806549, "_id": "l3ZNqAKpq4", "elevation": -4933.911, "temperature": 96.84548928834096, "vertical_depth": 4958.911}, {"gradient": 0.08565157314236407, "_id": "wpW7qRA902", "elevation": -4942.473, "temperature": 96.8462226371102, "vertical_depth": 4967.473}, {"gradient": 2.4146269009738193, "_id": "R0az5k4n9M", "elevation": -4951.034, "temperature": 96.86689425800944, "vertical_depth": 4976.034}, {"gradient": 0.06425743684391202, "_id": "k9ag5DVOVK", "elevation": -4959.596, "temperature": 96.8674444301837, "vertical_depth": 4984.596}, {"gradient": 0.04283185798872929, "_id": "aG7dNEpnpN", "elevation": -4968.158, "temperature": 96.8678111565518, "vertical_depth": 4993.158}, {"gradient": 2.4143549007658978, "_id": "bkwbPoX80g", "elevation": -4976.719, "temperature": 96.88848044885725, "vertical_depth": 5001.719}, {"gradient": 2.4159776496544265, "_id": "6qloz4XDJV", "elevation": -4985.281, "temperature": 96.90916604949359, "vertical_depth": 5010.281}, {"gradient": 0.021360047316094907, "_id": "4N0Za1ez5p", "elevation": -4993.843, "temperature": 96.90934893421871, "vertical_depth": 5018.843}, {"gradient": 2.42039001151089, "_id": "yEglBpbk3z", "elevation": -5002.404, "temperature": 96.93006989310726, "vertical_depth": 5027.404}, {"gradient": -0.00015532708520209093, "_id": "Y0xy8MBwJd", "elevation": -5010.966, "temperature": 96.93006856319676, "vertical_depth": 5035.966}, {"gradient": -0.021669352341612335, "_id": "gy4OJ5YN7Y", "elevation": -5019.528, "temperature": 96.929883030202, "vertical_depth": 5044.528}, {"gradient": 2.4228991799156145, "_id": "eXpvEPjJwX", "elevation": -5028.089, "temperature": 96.95062547008126, "vertical_depth": 5053.089}, {"gradient": -0.04321455380993702, "_id": "kr9ldk8MoA", "elevation": -5036.651, "temperature": 96.95025546707154, "vertical_depth": 5061.651}, {"gradient": 2.4262482888720873, "_id": "rOe4MgZKPe", "elevation": -5045.213, "temperature": 96.97102900492087, "vertical_depth": 5070.213}, {"gradient": 2.38521260697482, "_id": "zQb83pveEb", "elevation": -5053.774, "temperature": 96.99144881004918, "vertical_depth": 5078.774}, {"gradient": -0.11584155620099389, "_id": "yMRVZPrj7X", "elevation": -5062.336, "temperature": 96.99045697464499, "vertical_depth": 5087.336}, {"gradient": -0.15281760268334355, "_id": "bn58MVJyBQ", "elevation": -5070.898, "temperature": 96.98914855033081, "vertical_depth": 5095.898}, {"gradient": 2.3779759201623505, "_id": "4BY38W1zAZ", "elevation": -5079.459, "temperature": 97.00950640218332, "vertical_depth": 5104.459}, {"gradient": 2.386201126378027, "_id": "KNgly3xpRr", "elevation": -5088.021, "temperature": 97.02993705622737, "vertical_depth": 5113.021}, {"gradient": -0.17440502538111372, "_id": "kQKgjbrzM4", "elevation": -5096.583, "temperature": 97.02844380040005, "vertical_depth": 5121.583}, {"gradient": -0.19605065399092084, "_id": "eRyqvY7VEE", "elevation": -5105.144, "temperature": 97.02676541075124, "vertical_depth": 5130.144}, {"gradient": 2.396626360468344, "_id": "4WjMBqXeZ5", "elevation": -5113.706, "temperature": 97.04728532564957, "vertical_depth": 5138.706}, {"gradient": 2.4092303851835966, "_id": "BKO7P328wd", "elevation": -5122.268, "temperature": 97.06791315620751, "vertical_depth": 5147.268}, {"gradient": -0.2177123815144946, "_id": "P95gxA7jdZ", "elevation": -5130.829, "temperature": 97.06604932050936, "vertical_depth": 5155.829}, {"gradient": 2.4243221183342163, "_id": "PAJEm7Wove", "elevation": -5139.391, "temperature": 97.08680636648654, "vertical_depth": 5164.391}, {"gradient": -0.2394121052083148, "_id": "0RxnWOdkVO", "elevation": -5147.952, "temperature": 97.08475675945385, "vertical_depth": 5172.952}, {"gradient": -1.1155447970578523, "_id": "OvoDm79pPg", "elevation": -5156.514, "temperature": 97.07520546490144, "vertical_depth": 5181.514}, {"gradient": -1.1155447970578523, "_id": "VXZmd8LjxL", "elevation": -5165.076, "temperature": 97.06565417034903, "vertical_depth": 5190.076}, {"gradient": -1.1156751024957834, "_id": "azL1eOEk1J", "elevation": -5173.637, "temperature": 97.05610287579657, "vertical_depth": 5198.637}, {"gradient": -1.1155447970512131, "_id": "1J0yowzvyz", "elevation": -5182.199, "temperature": 97.04655158124422, "vertical_depth": 5207.199}, {"gradient": -1.1155447970643728, "_id": "zeG6oMOy7K", "elevation": -5190.761, "temperature": 97.03700028669175, "vertical_depth": 5215.761}, {"gradient": -1.0471224671349144, "_id": "YkEzwBq7X8", "elevation": -5199.322, "temperature": 97.02803587125061, "vertical_depth": 5224.322}, {"gradient": 2326.0630513676074, "_id": "NLa1xElp2P", "elevation": -5199.411, "temperature": 97.23505548282219, "vertical_depth": 5224.411}, {"gradient": -0.30426621777427615, "_id": "3v7kM9zLgV", "elevation": -5199.5, "temperature": 97.23502840312881, "vertical_depth": 5224.5}, {"gradient": -0.3047522752604898, "_id": "NGRvEZ4zQe", "elevation": -5207.184, "temperature": 97.2326866866457, "vertical_depth": 5232.184}, {"gradient": -0.23215496076421252, "_id": "nbRQgeAO7V", "elevation": -5214.869, "temperature": 97.23090257577223, "vertical_depth": 5239.869}, {"gradient": -0.10607152748600274, "_id": "1DYKG1A9km", "elevation": -5222.553, "temperature": 97.23008752215503, "vertical_depth": 5247.553}, {"gradient": 0.01760250496349334, "_id": "P20WOw1rM4", "elevation": -5230.237, "temperature": 97.23022277980317, "vertical_depth": 5255.237}, {"gradient": 884.7030185630115, "_id": "Ggy1ARvBEZ", "elevation": -5230.326, "temperature": 97.30896134845523, "vertical_depth": 5255.326}, {"gradient": -4.597420997749102, "_id": "AlvnG7dxvz", "elevation": -5230.415, "temperature": 97.30855217798643, "vertical_depth": 5255.415}, {"gradient": -4.604774133668158, "_id": "Ew8yK94kD7", "elevation": -5238.284, "temperature": 97.2723172103286, "vertical_depth": 5263.284}, {"gradient": -4.604189028956347, "_id": "zBwygDm8BG", "elevation": -5246.154, "temperature": 97.2360822426707, "vertical_depth": 5271.154}, {"gradient": -4.604774133668158, "_id": "Z5keQ9DRnm", "elevation": -5254.023, "temperature": 97.19984727501287, "vertical_depth": 5279.023}, {"gradient": -4.604774133682605, "_id": "W5BoVReDZ6", "elevation": -5261.892, "temperature": 97.16361230735492, "vertical_depth": 5286.892}, {"gradient": -4.604189028949657, "_id": "n4Qpq7WDJ9", "elevation": -5269.762, "temperature": 97.12737733969709, "vertical_depth": 5294.762}, {"gradient": -4.604774133667625, "_id": "N5XYRQNDAP", "elevation": -5277.631, "temperature": 97.09114237203926, "vertical_depth": 5302.631}, {"gradient": -4.604189028956879, "_id": "1vQJZq5l6P", "elevation": -5285.501, "temperature": 97.05490740438137, "vertical_depth": 5310.501}, {"gradient": -4.604774133675382, "_id": "XmrqdnYAnB", "elevation": -5293.37, "temperature": 97.01867243672348, "vertical_depth": 5318.37}, {"gradient": -4.604774133668158, "_id": "Jabw48XB9W", "elevation": -5301.239, "temperature": 96.98243746906564, "vertical_depth": 5326.239}, {"gradient": -4.60418902896357, "_id": "xqY5DQVeGw", "elevation": -5309.109, "temperature": 96.9462025014077, "vertical_depth": 5334.109}, {"gradient": -4.604774133660935, "_id": "XgvEOa1QxO", "elevation": -5316.978, "temperature": 96.90996753374992, "vertical_depth": 5341.978}, {"gradient": -4.604774133675382, "_id": "9NJlBkQ44k", "elevation": -5324.847, "temperature": 96.87373256609203, "vertical_depth": 5349.847}, {"gradient": 0.6169992033787508, "_id": "lDJZ8yBAAX", "elevation": -5332.717, "temperature": 96.87858834982262, "vertical_depth": 5357.717}, {"gradient": -3.903938291425502, "_id": "aaZ6B48MbD", "elevation": -5340.586, "temperature": 96.84786825940739, "vertical_depth": 5365.586}]}], "water_thermal_profiles": [], "source": "TEMPERATURE", "environment_temperature": 26.67, "_id": "Ze6NP39g3p"}} From 9499349a7665832203ac2f01646726b0f9b3fb9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Thu, 13 Jun 2024 17:52:32 -0300 Subject: [PATCH 5/7] Fix version of pandas package; Fix typing for tuple; Remove untyped definition in first row; PWPA-1930 --- setup.py | 2 +- src/alfasim_score/converter/alfacase/convert_alfacase.py | 1 - src/alfasim_score/converter/alfacase/score_input_reader.py | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index d47d21b..d62b815 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ "alfasim-sdk==0.20.0", "attrs>=18.1.0", "numpy>=1.11.0", - "pandas>=2.2.2", + "pandas>=2.0.0", "oop-ext>=1.1", "typing_extensions", ] diff --git a/src/alfasim_score/converter/alfacase/convert_alfacase.py b/src/alfasim_score/converter/alfacase/convert_alfacase.py index 82cac09..eaa8b33 100644 --- a/src/alfasim_score/converter/alfacase/convert_alfacase.py +++ b/src/alfasim_score/converter/alfacase/convert_alfacase.py @@ -1,4 +1,3 @@ -# mypy: disallow-untyped-defs from alfasim_sdk import AnnulusDescription from alfasim_sdk import FormationDescription from alfasim_sdk import ProfileDescription diff --git a/src/alfasim_score/converter/alfacase/score_input_reader.py b/src/alfasim_score/converter/alfacase/score_input_reader.py index 5a12a02..9de443c 100644 --- a/src/alfasim_score/converter/alfacase/score_input_reader.py +++ b/src/alfasim_score/converter/alfacase/score_input_reader.py @@ -1,7 +1,7 @@ -# mypy: disallow-untyped-defs import json from barril.units import Array from pathlib import Path +from typing import Tuple from alfasim_score.units import LENGTH_UNIT @@ -12,7 +12,7 @@ def __init__(self, score_filepath: Path): with open(score_filepath) as f: self.input_content = json.load(f) - def read_well_trajectory(self) -> tuple[Array, Array]: + def read_well_trajectory(self) -> Tuple[Array, Array]: """Create the arrays with the x and y positions.""" x = [entry["displacement"] for entry in self.input_content["trajectory"]["data"]] y = [-entry["vertical_depth"] for entry in self.input_content["trajectory"]["data"]] From e803166e8d00e96ea7aab38ea6fd0f07befcd376 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Fri, 14 Jun 2024 14:11:09 -0300 Subject: [PATCH 6/7] Change the name of converter class; Use the name in the input file as well name; PWPA-1930 --- .../converter/alfacase/_tests/test_convert_well_trajectory.py | 4 ++-- src/alfasim_score/converter/alfacase/convert_alfacase.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py index 745f1b2..b7bbc17 100644 --- a/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py +++ b/src/alfasim_score/converter/alfacase/_tests/test_convert_well_trajectory.py @@ -5,7 +5,7 @@ from pathlib import Path from pytest_regressions.num_regression import NumericRegressionFixture -from alfasim_score.converter.alfacase.convert_alfacase import AlfacaseConverter +from alfasim_score.converter.alfacase.convert_alfacase import ScoreAlfacaseConverter from alfasim_score.converter.alfacase.score_input_reader import ScoreInputReader @@ -18,7 +18,7 @@ def test_convert_well_trajectory( num_regression: NumericRegressionFixture, score_input_example: ScoreInputReader, ) -> None: - builder = AlfacaseConverter(score_input_example) + builder = ScoreAlfacaseConverter(score_input_example) well_description = builder.build_well() num_regression.check( { diff --git a/src/alfasim_score/converter/alfacase/convert_alfacase.py b/src/alfasim_score/converter/alfacase/convert_alfacase.py index eaa8b33..f8ca14a 100644 --- a/src/alfasim_score/converter/alfacase/convert_alfacase.py +++ b/src/alfasim_score/converter/alfacase/convert_alfacase.py @@ -12,10 +12,10 @@ from alfasim_score.units import LENGTH_UNIT -class AlfacaseConverter: +class ScoreAlfacaseConverter: def __init__(self, score_reader: ScoreInputReader): self.score_input = score_reader - self.well_name = score_reader.score_filepath.stem + self.well_name = score_reader.input_content["name"] def _get_well_start_vertical_position(self) -> Scalar: _, y = self.score_input.read_well_trajectory() From 047f48e6f387a66343959db20dbcfb09b4336a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ant=C3=A3o?= Date: Mon, 17 Jun 2024 09:19:00 -0300 Subject: [PATCH 7/7] Remove well start position method; Put reference as zero; PWPA-1930 --- src/alfasim_score/converter/alfacase/convert_alfacase.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/alfasim_score/converter/alfacase/convert_alfacase.py b/src/alfasim_score/converter/alfacase/convert_alfacase.py index f8ca14a..12ce9c9 100644 --- a/src/alfasim_score/converter/alfacase/convert_alfacase.py +++ b/src/alfasim_score/converter/alfacase/convert_alfacase.py @@ -17,10 +17,6 @@ def __init__(self, score_reader: ScoreInputReader): self.score_input = score_reader self.well_name = score_reader.input_content["name"] - def _get_well_start_vertical_position(self) -> Scalar: - _, y = self.score_input.read_well_trajectory() - return Scalar(y[0], LENGTH_UNIT) - def _convert_well_trajectory(self) -> ProfileDescription: """ Convert the trajectory for the imported well. @@ -36,7 +32,7 @@ def _convert_annulus(self) -> AnnulusDescription: # TODO PWPA-1934: implement this method def _convert_formation(self) -> AnnulusDescription: - return FormationDescription(reference_y_coordinate=self._get_well_start_vertical_position()) + return FormationDescription(reference_y_coordinate=Scalar(0.0, "m", "length")) def build_well(self) -> WellDescription: return WellDescription(